Skip to content

Commit

Permalink
fix: Set entrypoint shebang to bash
Browse files Browse the repository at this point in the history
  • Loading branch information
kumy committed May 7, 2024
1 parent 10dcd79 commit 8769739
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions geokrety-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh -x
#!/bin/bash -x
set -e

cat <<'EOF'
Expand Down Expand Up @@ -43,7 +43,7 @@ if [ "$1" = 'docker-php-entrypoint' ]; then
make buckets

# build sitemap
if [ "${GK_ENVIRONMENT}" == 'prod' ]; then
if [ "x${GK_ENVIRONMENT:-}" == 'xprod' ]; then
runuser -u www-data make build-sitemap &
fi

Expand Down

0 comments on commit 8769739

Please sign in to comment.