Skip to content

Commit

Permalink
Fix unbound docker-entrypoint.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
SciLor authored Dec 10, 2023
1 parent eb0cb97 commit 6acef3e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/docker-entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -o nounset
# set -o xtrace


if [ -n "$DOCKER_TEST" ]; then
if [ -n "${DOCKER_TEST:-}" ]; then
cd /teddycloud
LSAN_OPTIONS=detect_leaks=0 teddycloud DOCKER_TEST
else
Expand All @@ -20,4 +20,4 @@ else
exit $retVal
fi
done
fi
fi

0 comments on commit 6acef3e

Please sign in to comment.