From fee259597cb924ae9243486aff38a6c03ab9a1f7 Mon Sep 17 00:00:00 2001 From: Adam Warner Date: Mon, 24 Jul 2023 18:47:47 +0100 Subject: [PATCH] `./build-and-test.sh enter` was not working because bash not installed, change command to sh instead of bash Signed-off-by: Adam Warner --- build-and-test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-and-test.sh b/build-and-test.sh index 353535e..0f90186 100755 --- a/build-and-test.sh +++ b/build-and-test.sh @@ -2,7 +2,7 @@ set -ex if [[ "$1" == "enter" ]]; then - enter="-it --entrypoint=bash" + enter="-it --entrypoint=sh" fi GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD | sed "s/\//-/g")