From 8e7d235513136d084ef7546f794c290159b0237c Mon Sep 17 00:00:00 2001 From: Paul Hollinsky Date: Sun, 11 Feb 2024 14:34:58 -0800 Subject: [PATCH] tools/toolbox: Explicitly use /bin/bash The script uses bash-specific language extensions which cause syntax errors when run with /bin/sh -> /bin/dash. Part-of: --- tools/toolbox/create-toolbox.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/toolbox/create-toolbox.sh b/tools/toolbox/create-toolbox.sh index 1c52b3f18..c5bad3505 100755 --- a/tools/toolbox/create-toolbox.sh +++ b/tools/toolbox/create-toolbox.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # vi: sw=2 ts=4 set -e