1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 09:14:58 +00:00

Meta: Add Homebrew paths for macOS on M1 to the PATH env variable

This commit is contained in:
Gunnar Beutner 2021-07-24 12:31:48 +02:00 committed by Andreas Kling
parent 12bfc7b3fc
commit cc0914ae58

View file

@ -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}")"