]> git.donarmstrong.com Git - cran2deb.git/blob - branch/double_build/exec/db_release
cc6d59d09958e6c0ae7e81ed3d59df379fc4d42c
[cran2deb.git] / branch / double_build / exec / db_release
1 #!/usr/bin/env r
2 ## DOC: cran2deb db_release
3 ## DOC:     make note of a substantial update of the database. causes all packages to be marked for ebuild.
4 ## DOC:
5
6 suppressPackageStartupMessages(library(cran2deb))
7
8 con <- db_start()
9 notice('old db version:',db_cur_version(con))
10 db_stop(con,TRUE)
11 con <- db_start()
12 notice('new db version:',db_cur_version(con))
13 db_stop(con)