diff options
author | Fred Drake <fdrake@acm.org> | 2004-06-29 14:39:06 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-06-29 14:39:06 +0000 |
commit | 9d8210a58f06d5a5768023e9f3e5cbf90084face (patch) | |
tree | c2e4920d4904e41d2a7d7cab9e8ec6c0514203b3 /Doc/tools | |
parent | f21509cbef5ce9dceb0e27e71fba04b770e10de8 (diff) | |
download | cpython-9d8210a58f06d5a5768023e9f3e5cbf90084face.tar.gz |
fix handling when a proper getopt(1) is available; the "--"
end-of-options marker wasn't recognized
Diffstat (limited to 'Doc/tools')
-rwxr-xr-x | Doc/tools/push-docs.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Doc/tools/push-docs.sh b/Doc/tools/push-docs.sh index c124f8b5da..dfccb5b733 100755 --- a/Doc/tools/push-docs.sh +++ b/Doc/tools/push-docs.sh @@ -61,6 +61,10 @@ while [ "$#" -gt 0 ] ; do EXPLANATION="`cat $2`" shift 2 ;; + --) + shift 1 + break + ;; -*) echo "Unknown option: $1" >&2 exit 2 |