From 6eb8d22be6f530cd389f0f0e0827349fd8d80101 Mon Sep 17 00:00:00 2001 From: Robin Schneider Date: Wed, 25 Dec 2019 22:54:30 +0100 Subject: [PATCH] package_web_vault.sh uses bash features -> needs to be called with bash This is also what the Shebang says already! I assume this worked before because sh was symlinked to bash. You should not rely on this! --- package_all.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) mode change 100644 => 100755 package_all.sh diff --git a/package_all.sh b/package_all.sh old mode 100644 new mode 100755 index 3bd1da7..4b4582a --- a/package_all.sh +++ b/package_all.sh @@ -3,19 +3,19 @@ export UPLOAD_VAULT="n" export WEB_REF="v2.5.0" -sh package_web_vault.sh +bash package_web_vault.sh export WEB_REF="v2.6.0" -sh package_web_vault.sh +bash package_web_vault.sh export WEB_REF="v2.6.1" -sh package_web_vault.sh +bash package_web_vault.sh export WEB_REF="v2.7.0" -sh package_web_vault.sh +bash package_web_vault.sh export WEB_REF="v2.7.1" -sh package_web_vault.sh +bash package_web_vault.sh export WEB_REF="v2.8.0" -sh package_web_vault.sh \ No newline at end of file +bash package_web_vault.sh