Commit 96b935e6 authored by Fred Drake's avatar Fred Drake

fix handling when a proper getopt(1) is available; the "--"

end-of-options marker wasn't recognized
parent 93b4b88e
......@@ -61,6 +61,10 @@ while [ "$#" -gt 0 ] ; do
EXPLANATION="`cat $2`"
shift 2
;;
--)
shift 1
break
;;
-*)
echo "Unknown option: $1" >&2
exit 2
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment