From 174fe88d45990eff04f4fdb74adeafa85f43d49e Mon Sep 17 00:00:00 2001 From: Thomas G Stokes Date: Mon, 11 Mar 2024 18:09:47 +0100 Subject: [PATCH] Remove accidental double execution, which only caused an issue on the central. --- .../repo/usr/local/bin/sync-repo-and-execute-cmd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configuration/environments_scripts/repo/usr/local/bin/sync-repo-and-execute-cmd.sh b/configuration/environments_scripts/repo/usr/local/bin/sync-repo-and-execute-cmd.sh index 402e28f5b94..e7b62c7dcaf 100755 --- a/configuration/environments_scripts/repo/usr/local/bin/sync-repo-and-execute-cmd.sh +++ b/configuration/environments_scripts/repo/usr/local/bin/sync-repo-and-execute-cmd.sh @@ -47,6 +47,6 @@ then fi fi sleep 2 - $($COMMAND_ON_COMPLETION) + ${COMMAND_ON_COMPLETION} fi