22#
33# Simple r2u helper frontend
44#
5- # Copyright (C) 2022 - 2025 Dirk Eddelbuettel
5+ # Copyright (C) 2022 - 2026 Dirk Eddelbuettel
66#
77# Released under GPL (>= 2)
88
@@ -11,7 +11,7 @@ library(docopt)
1111doc <- " Usage: r2u.r [--release DIST] [--debug] [--verbose] [--force] [--xvfb] [--bioc] [--suffix SUF] [--debver DBV] [--plusdfsg] [--uncache] [--dryrun] [--compile] [--help] CMD ...
1212
1313Options:
14- -r --release DIST release distribution to use, one of 'focal', 'jammy', 'noble' [default: noble]
14+ -r --release DIST release distribution to use, one of 'focal', 'jammy', 'noble', 'resolute' [default: noble]
1515-d --debug boolean flag for extra debugging
1616-v --verbose boolean flag for verbose operation
1717-f --force boolean flag to force a build
@@ -31,10 +31,12 @@ last reports most recent binary package sync
3131count counts packages downloaded (locally) today
3232table tabulates packages downloaded today
3333package updates the package(s) named in ... and builds
34+
35+ Note that some of the status subcommand are somewhat dependent on auxiliary scripts on my machine.
3436"
3537
3638opt <- docopt(doc )
37- if (! is.finite(match(opt $ release , c(" focal" , " jammy" , " noble" ))))
39+ if (! is.finite(match(opt $ release , c(" focal" , " jammy" , " noble" , " resolute " ))))
3840 stop(" Unknown distro '" , opt $ release , " '." , call. = FALSE )
3941
4042if (length(opt $ CMD ) > 1 ) {
0 commit comments