Skip to content

Commit

Permalink
Add single quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefomat committed Mar 17, 2024
1 parent f2860e6 commit 8387d25
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ EOF

# Add more options to config.php
# shellcheck disable=SC2129
echo "define('IPV4_ADDRESS_URL', ${IPV4_ADDRESS_URL:-https://get-ipv4.steck.cc});" >> /opt/config.php
echo "define('IPV4_ADDRESS_URL_FALLBACK', ${IPV4_ADDRESS_URL_FALLBACK:-https://4.ipwho.de/ip});" >> /opt/config.php
echo "define('IPV6_ADDRESS_URL', ${IPV6_ADDRESS_URL:-https://get-ipv6.steck.cc});" >> /opt/config.php
echo "define('IPV6_ADDRESS_URL_FALLBACK', ${IPV6_ADDRESS_URL_FALLBACK:-https://6.ipwho.de/ip});" >> /opt/config.php
echo "define('IPV4_ADDRESS_URL', '${IPV4_ADDRESS_URL:-https://get-ipv4.steck.cc}');" >> /opt/config.php
echo "define('IPV4_ADDRESS_URL_FALLBACK', '${IPV4_ADDRESS_URL_FALLBACK:-https://4.ipwho.de/ip}');" >> /opt/config.php
echo "define('IPV6_ADDRESS_URL', '${IPV6_ADDRESS_URL:-https://get-ipv6.steck.cc}');" >> /opt/config.php
echo "define('IPV6_ADDRESS_URL_FALLBACK', '${IPV6_ADDRESS_URL_FALLBACK:-https://6.ipwho.de/ip}');" >> /opt/config.php

# Welcome message
echo "============================================="
Expand Down

0 comments on commit 8387d25

Please sign in to comment.