diff options
Diffstat (limited to 'bin/grun')
-rwxr-xr-x | bin/grun | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -72,7 +72,7 @@ done shift $((OPTIND - 1)) FILENAME="${1:-}" -eval "$(assert-arg "$FILENAME" 'FILENAME')" +eval "$(assert-arg -- "$FILENAME" 'FILENAME')" shift if [ "${1:-}" != '--' ]; then @@ -82,7 +82,7 @@ if [ "${1:-}" != '--' ]; then fi shift -eval "$(assert-arg "${1:-}" 'COMMAND')" +eval "$(assert-arg -- "${1:-}" 'COMMAND')" if [ ! -e "$FILENAME" ]; then |