From 39a067c1b899339e8f038f0cf3091e2bd4d8a499 Mon Sep 17 00:00:00 2001 From: mingyuan Date: Sun, 17 Nov 2024 13:48:57 +0800 Subject: [PATCH] fix: update shebang in build-ventus.sh to ensure compatibility Replaced `#!bash` with `#!/usr/bin/env bash` in build-ventus.sh to ensure the script uses the correct Bash interpreter across different environments. --- build-ventus.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-ventus.sh b/build-ventus.sh index 7b1cbdcfb691..b02a91c6d3c7 100755 --- a/build-ventus.sh +++ b/build-ventus.sh @@ -1,4 +1,4 @@ -#!bash +#!/usr/bin/env bash DIR=$(cd "$(dirname "${0}")" &> /dev/null && (pwd -W 2> /dev/null || pwd)) VENTUS_BUILD_DIR=${DIR}/build