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
Notes: sideshowbarker 2024-07-18 08:24:41 +09:00

View file

@ -16,6 +16,8 @@ fi
if [ "$(uname -s)" = "Darwin" ]; then if [ "$(uname -s)" = "Darwin" ]; then
export PATH="/usr/local/opt/e2fsprogs/bin:$PATH" export PATH="/usr/local/opt/e2fsprogs/bin:$PATH"
export PATH="/usr/local/opt/e2fsprogs/sbin:$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 fi
SCRIPT_DIR="$(dirname "${0}")" SCRIPT_DIR="$(dirname "${0}")"