fix missing negation

This commit is contained in:
Philip Henning 2025-01-28 20:36:39 +01:00
parent 0d7308fb4e
commit b61bc9ce4f

View file

@ -50,7 +50,7 @@ while true; do
esac
done
if [[ -f ./docker-compose.yml ]]; then
if [[ ! -f ./docker-compose.yml ]]; then
[[ "${DEPLOYMENT_ENVIRONMENT}" == "PRODUCTION" ]] && ln -s ./docker-compose.prod.yml ./docker-compose.yml
[[ "${DEPLOYMENT_ENVIRONMENT}" == "TEST" ]] && ln -s ./docker-compose.test.yml ./docker-compose.yml
fi