From 96f53100ba2a5449eb71d2e6604bbcd94b9449b5 Mon Sep 17 00:00:00 2001 From: Johannes Schindelin Date: Fri, 9 Jun 2023 17:05:29 +0200 Subject: [PATCH] Mark test scripts with Bash'isms to be run via Bash (#1377) In #1369, I mistakenly replaced the hash-bang lines in the two new scripts with `#!/bin/sh`, missing that both files contain the Bash'ism `[[`. Symptom as per https://github.com/actions/checkout/actions/runs/5200323109/jobs/9378889172?pr=1369#step:12:5 __test__/verify-sparse-checkout.sh: 58: [[: not found Let's change those hash-bang lines back to `#!/bin/bash`. Signed-off-by: Johannes Schindelin --- __test__/verify-sparse-checkout-non-cone-mode.sh | 2 +- __test__/verify-sparse-checkout.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/__test__/verify-sparse-checkout-non-cone-mode.sh b/__test__/verify-sparse-checkout-non-cone-mode.sh index 0d5d56f..dae28ed 100755 --- a/__test__/verify-sparse-checkout-non-cone-mode.sh +++ b/__test__/verify-sparse-checkout-non-cone-mode.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Verify .git folder if [ ! -d "./sparse-checkout-non-cone-mode/.git" ]; then diff --git a/__test__/verify-sparse-checkout.sh b/__test__/verify-sparse-checkout.sh index f668430..a9f7748 100755 --- a/__test__/verify-sparse-checkout.sh +++ b/__test__/verify-sparse-checkout.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # Verify .git folder if [ ! -d "./sparse-checkout/.git" ]; then