Skip to content

Commit

Permalink
chore: standard shell uses single '=' not '==' for comparison (evcc-i…
Browse files Browse the repository at this point in the history
  • Loading branch information
thiloms authored Jul 11, 2024
1 parent 38b33fd commit 3fa2c33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packaging/docker/bin/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ if [ -f ${HASSIO_OPTIONSFILE} ]; then
fi
fi
else
if [ "$1" == '"evcc"' ] || expr "$1" : '-*' > /dev/null; then
if [ "$1" = '"evcc"' ] || expr "$1" : '-*' > /dev/null; then
exec evcc "$@"
else
exec "$@"
Expand Down

0 comments on commit 3fa2c33

Please sign in to comment.