Skip to content

Commit

Permalink
chore: rename variables
Browse files Browse the repository at this point in the history
  • Loading branch information
pcnc committed Apr 18, 2024
1 parent 0c1ee09 commit 70cc8e0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker/all-in-one/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -298,12 +298,12 @@ if [ "${PLATFORM_DEPLOYMENT:-}" == "true" ]; then
trap graceful_shutdown SIGINT
fi

REMOTE_INIT_SCRIPT=${REMOTE_INIT_SCRIPT:-}
if [ -n "$REMOTE_INIT_SCRIPT" ]; then
curl -fsSL "$REMOTE_INIT_SCRIPT" -o "/tmp/remote-init.sh" || true
REMOTE_INIT_UTIL=${REMOTE_INIT_UTIL:-}
if [ -n "$REMOTE_INIT_UTIL" ]; then
curl -fsSL "$REMOTE_INIT_UTIL" -o "/tmp/remote-init" || true
if [ -f "/tmp/remote-init.sh" ]; then
chmod +x /tmp/remote-init.sh
bash /tmp/remote-init.sh
/tmp/remote-init.sh || true
fi
fi

Expand Down

0 comments on commit 70cc8e0

Please sign in to comment.