From 7c348e180d5c79ead5b6d879be9ebd340fd33da7 Mon Sep 17 00:00:00 2001 From: Antoine Bigard Date: Mon, 18 Nov 2024 09:26:24 +0100 Subject: [PATCH] fix(debug): log file name --- .bin/scripts/run-playbook.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.bin/scripts/run-playbook.sh b/.bin/scripts/run-playbook.sh index 3c11af7d..659efb51 100755 --- a/.bin/scripts/run-playbook.sh +++ b/.bin/scripts/run-playbook.sh @@ -63,5 +63,5 @@ function runPlaybook() { if [[ -z "${CI:-}" ]]; then runPlaybook "$@" else - runPlaybook "$@" &> /tmp/deploy_error.log + runPlaybook "$@" &> /tmp/deploy.log fi;