remove possibly descructive commands

This commit is contained in:
Philip Henning 2024-11-19 11:04:53 +01:00
parent f68f061db5
commit 2c3a0864da

View file

@ -25,7 +25,7 @@ prompt_password() {
} }
# Trap SIGINT to exit gracefully if the user aborts with CTRL+C # Trap SIGINT to exit gracefully if the user aborts with CTRL+C
trap 'printf "\nOperation aborted by user.\n" >&2; rm .env; exit 1' SIGINT trap 'printf "\nOperation aborted by user.\n" >&2; exit 1' SIGINT
cd "$(dirname "$(realpath "$0")")/../" cd "$(dirname "$(realpath "$0")")/../"