X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=make-upstream.sh;h=d9454917f6ce07ab53b9fb38e7a0f4a44c81a0ff;hb=f8bcba058fba7820bdb2a7eebede4a88ad7faa5c;hp=2acb3ae5a6852b10977c11b8d35df1f67f6f4d86;hpb=8c8440d0681afef840611e93a905c49f7f8b172f;p=uffi.git diff --git a/make-upstream.sh b/make-upstream.sh index 2acb3ae..d945491 100755 --- a/make-upstream.sh +++ b/make-upstream.sh @@ -12,17 +12,23 @@ usage () { Usage: $progname [options] Creates upstream archives Options: + -c Commit and tag CVS tree with current version numbers -t Tag CVS tree with current version numbers + -f Force creation of upstream archive, even if exists' -h Print this brief help EOF } +opt_force=0 + # Command line while [ $# != 0 ]; do value="`echo x\"$1\" | sed -e 's/^x-.//'`" case "$1" in -h) usage; exit 0 ;; + -c) opt_commit=1; opt_tag=1 ;; -t) opt_tag=1 ;; + -f) opt_force=1 ;; *) usage; exit 0 ;; esac shift