commit: 8b091dc01c96d36036ebcaef12342b2790213829
Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 6 20:00:02 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Mon Jul 6 20:00:02 2015 +0000
URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=8b091dc0
grsup: change to -D to download all binpkgs.
grsup | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/grsup b/grsup
index d956af9..5362d46 100755
--- a/grsup
+++ b/grsup
@@ -97,7 +97,7 @@ def usage(rc=1):
usage = """
usage: grsup [pkg(s)] : update @world or pkg(s) if given
grsup [-r|-d] pkg(s) : re-install or delete pkg(s)
- grsup -C : download all @world pkgs, don't install
+ grsup -D : download all @world pkgs, don't install
grsup -k kernel : install 'kernel' version, or 'latest'
grsup -h : print this help
"""
@@ -136,7 +136,7 @@ def main():
args = ['-C', '-q']
args.extend(myfiles)
exclude += 1
- elif o == '-C':
+ elif o == '-D':
if len(myfiles) > 0:
usage()
args = ['-g', '-e', '-f', '-q', '@world']