We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 77aa42d + 90418fd commit e0e912fCopy full SHA for e0e912f
brew_check.sh
@@ -4,9 +4,9 @@ scriptname=$0
4
5
hw=$(uname -m)
6
if [ "$hw" = x86_64 ]; then
7
- brew=$(find "/usr/local/bin/" -iname brew)
+ brew=$(find "/usr/local/bin" -iname brew)
8
elif [ "$hw" = arm64 ]; then
9
- brew=$(find "/opt/homebrew/bin/" -iname brew)
+ brew=$(find "/opt/homebrew/bin" -iname brew)
10
else
11
exit 1
12
fi
pip_check.sh
@@ -4,7 +4,7 @@ scriptname=$0
- pip3=$(find "/usr/local/bin/" -iname pip3.11)
+ pip3=$(find "/usr/local/bin" -iname pip3.11)
pip3=$(find "/opt/homebrew/opt/[email protected]/bin" -iname pip3.11)
0 commit comments