We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9658da2 commit e7b262eCopy full SHA for e7b262e
ci/cirrusci.sh
@@ -30,7 +30,12 @@ if [ "$OS_NAME" == "linux" ]; then
30
elif [ "$OS_NAME" == "osx" ]; then
31
# upgrade GNU make
32
brew install make
33
- sudo ln -s /usr/local/opt/make/libexec/gnubin/make /usr/local/bin/make
+ for candidateDir in /usr/local/opt/make/libexec/gnubin /opt/homebrew/opt/make/libexec/gnubin; do
34
+ if [[ -f $candidateDir/make ]]; then
35
+ sudo ln -s $candidateDir/make /usr/local/bin/make
36
+ break
37
+ fi
38
+ done
39
elif [ "$OS_NAME" == "freebsd" ]; then
40
packages="git gmake devel/llvm12"
41
if [ "$HOST_DMD" == "dmd-2.079.0" ] ; then
0 commit comments