Skip to content

Commit

Permalink
Fix comparison entrypoint error
Browse files Browse the repository at this point in the history
  • Loading branch information
ain committed Dec 9, 2023
1 parent ca90803 commit 11bc0ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ then
fi

verbosity=""
if [ $3 == "normal" ]
if [[ $3 == "normal" ]]
then
verbosity="-v"
elif [ $3 == "high" ]
elif [[ $3 == "high" ]]
then
verbosity="-vv"
fi
Expand Down

0 comments on commit 11bc0ed

Please sign in to comment.