aboutsummaryrefslogtreecommitdiff
path: root/tests/functional
diff options
context:
space:
mode:
authorvigress8 <150687949+vigress8@users.noreply.github.com>2024-06-24 23:28:36 +0400
committerJade Lovelace <lix@jade.fyi>2024-06-24 14:00:43 -0700
commitc7af89c79771a6d4eb84baa6cd9b7551b3a84a4b (patch)
treee73517bef7dbbe45e14564d955ee7d25e88c9f3c /tests/functional
parentd86009bd76ae85e56e1d26aab26d38f90ecb6439 (diff)
change shebangs of all .sh scripts to bash
On operating systems where /bin/sh is not Bash, some scripts are invalid because of bashisms, and building Lix fails with errors like this: `render-manpage.sh: 3: set: Illegal option -o pipefail` This modifies all scripts that use a `/bin/sh` shebang to `/usr/bin/env bash`, including currently POSIX-compliant ones, to prevent any future confusion. Change-Id: Ia074cc6db42d40fc59a63726f6194ea0149ea5e0
Diffstat (limited to 'tests/functional')
-rwxr-xr-xtests/functional/install-darwin.sh2
-rwxr-xr-xtests/functional/nix-daemon-untrusting.sh2
-rwxr-xr-xtests/functional/push-to-store-old.sh2
-rwxr-xr-xtests/functional/push-to-store.sh2
4 files changed, 4 insertions, 4 deletions
diff --git a/tests/functional/install-darwin.sh b/tests/functional/install-darwin.sh
index ea2b75323..c785437f4 100755
--- a/tests/functional/install-darwin.sh
+++ b/tests/functional/install-darwin.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env bash
set -eux
diff --git a/tests/functional/nix-daemon-untrusting.sh b/tests/functional/nix-daemon-untrusting.sh
index bcdb70989..22f0d45ae 100755
--- a/tests/functional/nix-daemon-untrusting.sh
+++ b/tests/functional/nix-daemon-untrusting.sh
@@ -1,3 +1,3 @@
-#!/bin/sh
+#!/usr/bin/env bash
exec nix-daemon --force-untrusted "$@"
diff --git a/tests/functional/push-to-store-old.sh b/tests/functional/push-to-store-old.sh
index 4187958b2..21f55b70e 100755
--- a/tests/functional/push-to-store-old.sh
+++ b/tests/functional/push-to-store-old.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env bash
set -x
set -e
diff --git a/tests/functional/push-to-store.sh b/tests/functional/push-to-store.sh
index 9e4e475e0..fe551179e 100755
--- a/tests/functional/push-to-store.sh
+++ b/tests/functional/push-to-store.sh
@@ -1,4 +1,4 @@
-#!/bin/sh
+#!/usr/bin/env bash
set -x
set -e