Skip to content

Commit

Permalink
Fix unquoted param
Browse files Browse the repository at this point in the history
  • Loading branch information
caillioux committed May 18, 2021
1 parent ccbea12 commit d8819fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dockerexec.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ fi

for param in "$@"
do
if [ "-v" = $param ]; then
if [ "-v" = "$param" ]; then
verbose=1
else
user_command="${user_command} \"${param}\""
Expand Down

0 comments on commit d8819fb

Please sign in to comment.