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.
This commit is contained in:
mingyuan 2024-11-17 13:48:57 +08:00
parent 0f31d6ca08
commit 39a067c1b8
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#!bash #!/usr/bin/env bash
DIR=$(cd "$(dirname "${0}")" &> /dev/null && (pwd -W 2> /dev/null || pwd)) DIR=$(cd "$(dirname "${0}")" &> /dev/null && (pwd -W 2> /dev/null || pwd))
VENTUS_BUILD_DIR=${DIR}/build VENTUS_BUILD_DIR=${DIR}/build