Skip to content

Commit

Permalink
Fix -- separator in scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
efrecon committed Feb 9, 2024
1 parent bc164ea commit 44c8557
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 7 deletions.
2 changes: 0 additions & 2 deletions base/base.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ while getopts "dl:vh-" opt; do
BASE_VERBOSE=$((BASE_VERBOSE+1));;
h) # Print help and exit
usage;;
-) # End of options, everything after are options blindly passed to program before list of files
break;;
?)
usage 1;;
esac
Expand Down
2 changes: 0 additions & 2 deletions runner/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ while getopts "l:u:vh-" opt; do
INSTALL_VERBOSE=$((INSTALL_VERBOSE+1));;
h) # Print help and exit
usage;;
-) # End of options, everything after are options blindly passed to program before list of files
break;;
?)
usage 1;;
esac
Expand Down
2 changes: 1 addition & 1 deletion runner/runner.sh
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ while getopts "eg:G:l:L:n:p:s:t:T:u:Uvh-" opt; do
RUNNER_VERBOSE=$((RUNNER_VERBOSE+1));;
h) # Print help and exit
usage;;
-) # End of options, everything after are options blindly passed to program before list of files
-) # End of options, everything is executed as a command, as relevant user
break;;
?)
usage 1;;
Expand Down
2 changes: 0 additions & 2 deletions runner/token.sh
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ while getopts "g:l:p:s:T:vh-" opt; do
TOKEN_VERBOSE=$((TOKEN_VERBOSE+1));;
h) # Print help and exit
usage;;
-) # End of options, everything after are options blindly passed to program before list of files
break;;
?)
usage 1;;
esac
Expand Down

0 comments on commit 44c8557

Please sign in to comment.