Browse Source

Fix SC2068

Shellcheck: "double quote array expansions to avoid re-splitting
elements"
pull/18/head
Vladislav Glinsky 6 years ago
parent
commit
714a947dfa
Signed by: cl0ne GPG Key ID: 9D058DD29491782E
  1. 2
      entrypoint.sh

2
entrypoint.sh

@ -8,6 +8,6 @@ case "${1}" in
source /opt/bot/venv/bin/activate
python -m devpotato_bot
;;
*) exec ${@} ;;
*) exec "${@}" ;;
esac
Loading…
Cancel
Save