diff options
-rwxr-xr-x | bin/cl | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -176,7 +176,11 @@ while getopts 'e:f:pM:I:nvlh' flag; do ;; esac done -shift $((OPTIND - 1)) + +shift $((OPTIND - 2)) +if [ "$1" != '--' ]; then + shift +fi PRESERVE_ARGS=false INTERACTIVE=true |