diff options
| author | Miquel Sabaté Solà <mssola@mssola.com> | 2026-07-23 12:07:51 +0200 |
|---|---|---|
| committer | Miquel Sabaté Solà <mssola@mssola.com> | 2026-07-23 12:07:51 +0200 |
| commit | 27cea17cf7f4f9b706d0f3da4dc558b8e7b5d764 (patch) | |
| tree | 984293e407ed763777d1c92256ab0b0ed7ebb8db | |
| parent | fbbdec88d146c0b4486dbf081e102731979cf638 (diff) | |
| download | tools.nes-27cea17cf7f4f9b706d0f3da4dc558b8e7b5d764.tar.gz tools.nes-27cea17cf7f4f9b706d0f3da4dc558b8e7b5d764.zip | |
scripts: ensure bash is running them
Signed-off-by: Miquel Sabaté Solà <mssola@mssola.com>
| -rwxr-xr-x | scripts/full-test.sh | 2 | ||||
| -rwxr-xr-x | scripts/fuzz.sh | 2 | ||||
| -rwxr-xr-x | scripts/test-e2e.sh | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/scripts/full-test.sh b/scripts/full-test.sh index 906cc1f..321f5d3 100755 --- a/scripts/full-test.sh +++ b/scripts/full-test.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env sh +#!/usr/bin/bash set -ex diff --git a/scripts/fuzz.sh b/scripts/fuzz.sh index 59d52a2..65c6ffa 100755 --- a/scripts/fuzz.sh +++ b/scripts/fuzz.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env sh +#!/usr/bin/bash set -ex diff --git a/scripts/test-e2e.sh b/scripts/test-e2e.sh index c32d427..7546666 100755 --- a/scripts/test-e2e.sh +++ b/scripts/test-e2e.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env sh +#!/usr/bin/bash # Instead of setting -e or something like that, we will accumulate errors and # exit with the accumulated result at the end. |
