From aab450c4deae96fa5495e52ba31c1cc9627b1e15 Mon Sep 17 00:00:00 2001 From: mellor Date: Tue, 9 Sep 2014 10:04:17 -0400 Subject: [PATCH] added --uploaduser as option and fixed default --- xCAT-client/bin/getxcatdocs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/xCAT-client/bin/getxcatdocs b/xCAT-client/bin/getxcatdocs index 26fb41fcd..d57f778d4 100755 --- a/xCAT-client/bin/getxcatdocs +++ b/xCAT-client/bin/getxcatdocs @@ -9,7 +9,7 @@ # Note: do not use the --upload option, unless your machine has authority to write to http://xcat.sourceforge.net/doc/ . # You also need to set $UPLOADUSER to your sourceforge user: -my $UPLOADUSER = 'mellor'; +my $UPLOADUSER = 'bp-sawyers'; use strict; use Getopt::Long; @@ -50,7 +50,7 @@ sub verbose { if ($VERBOSE) { print shift, "\n"; } } my $usage = sub { my $exitcode = shift @_; print "Usage: getxcatdocs [-?|-h|--help] \n"; - print "Usage: getxcatdocs [-v|--verbose] [-u|--upload] [--uploadonly] [-i|--ignoreerrors] []\n"; + print "Usage: getxcatdocs [-v|--verbose] [-u|--upload] [--uploadonly] [-U|--uploaduser sourceforge_id] [-i|--ignoreerrors] []\n"; print "Usage: getxcatdocs [-v|--verbose] [-c|--continue] [-d|--doc single_doc] [-i|--ignoreerrors] []\n"; exit $exitcode; }; @@ -67,6 +67,7 @@ my $usage = sub { 'v|verbose' => \$VERBOSE, 'u|upload' => \$UPLOAD, 'uploadonly' => \$UPLOADONLY, + 'uploaduser' => \$UPLOADUSER, 'c|continue' => \$CONTINUE, 'i|ignoreerrors' => \$IGNOREERRORS, 'd|doc=s' => \$SINGLE_DOC ))