commit | 96b935e6435ea9928f3a11732d07ecfbb9a671d1 | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Tue Jun 29 14:39:06 2004 +0000 |
committer | Fred Drake <fdrake@acm.org> | Tue Jun 29 14:39:06 2004 +0000 |
tree | aecc0e71742134fcbbd28a71689d292256ae271f | |
parent | 93b4b88e960d5868ca2c0a109a74e1a8e06d3348 [diff] [blame] |
fix handling when a proper getopt(1) is available; the "--" end-of-options marker wasn't recognized
diff --git a/Doc/tools/push-docs.sh b/Doc/tools/push-docs.sh index c124f8b..dfccb5b 100755 --- a/Doc/tools/push-docs.sh +++ b/Doc/tools/push-docs.sh
@@ -61,6 +61,10 @@ EXPLANATION="`cat $2`" shift 2 ;; + --) + shift 1 + break + ;; -*) echo "Unknown option: $1" >&2 exit 2