summaryrefslogtreecommitdiff
path: root/Meta/build-image-qemu.sh
diff options
context:
space:
mode:
authorGunnar Beutner <gbeutner@serenityos.org>2021-07-24 12:31:48 +0200
committerAndreas Kling <kling@serenityos.org>2021-07-24 14:04:13 +0200
commitcc0914ae58e37542d9b37a762e5ec5e943e4d5b9 (patch)
tree576beda5ef1704810f3e0a3840af712002595868 /Meta/build-image-qemu.sh
parent12bfc7b3fc0660d2419131ad512903c2080f999a (diff)
downloadserenity-cc0914ae58e37542d9b37a762e5ec5e943e4d5b9.zip
Meta: Add Homebrew paths for macOS on M1 to the PATH env variable
Diffstat (limited to 'Meta/build-image-qemu.sh')
-rwxr-xr-xMeta/build-image-qemu.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/Meta/build-image-qemu.sh b/Meta/build-image-qemu.sh
index 6274c9d093..c68d2559bb 100755
--- a/Meta/build-image-qemu.sh
+++ b/Meta/build-image-qemu.sh
@@ -16,6 +16,8 @@ fi
if [ "$(uname -s)" = "Darwin" ]; then
export PATH="/usr/local/opt/e2fsprogs/bin:$PATH"
export PATH="/usr/local/opt/e2fsprogs/sbin:$PATH"
+ export PATH="/opt/homebrew/opt/e2fsprogs/bin:$PATH"
+ export PATH="/opt/homebrew/opt/e2fsprogs/sbin:$PATH"
fi
SCRIPT_DIR="$(dirname "${0}")"