0
1
mirror of https://github.com/actions/checkout synced 2024-06-01 18:38:03 +02:00

Mark test scripts with Bash'isms to be run via Bash

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 <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin 2023-06-09 16:59:30 +02:00
parent d106d4669b
commit 1e3e69ab97
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Verify .git folder
if [ ! -d "./sparse-checkout-non-cone-mode/.git" ]; then

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
# Verify .git folder
if [ ! -d "./sparse-checkout/.git" ]; then