mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-21 23:20:20 +00:00
Toolchain: Make BuildFuseExt2.sh shellcheck compliant
BuildFuseExt2.sh was saying it should be run under /bin/sh but it is using bash extensions like pushd/popd, ${BASH_SOURCE[0]}, etc. So just run it under bash to avoid any potential issues.
This commit is contained in:
parent
b4927a753d
commit
f558a44610
Notes:
sideshowbarker
2024-07-18 18:40:39 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/f558a446100 Pull-request: https://github.com/SerenityOS/serenity/pull/6872 Issue: https://github.com/SerenityOS/serenity/issues/6772 Reviewed-by: https://github.com/bcoles ✅
1 changed files with 4 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
|||
#!/bin/sh
|
||||
#!/usr/bin/env bash
|
||||
set -e
|
||||
# This file will need to be run in bash.
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||
export PATH="/usr/local/opt/m4/bin:$PATH"
|
||||
|
||||
|
|
Loading…
Reference in a new issue