Try to search for binary on macOS/Cabal3

This commit is contained in:
Vidar Holen 2019-11-18 17:12:25 -08:00
parent e075cde357
commit 5c7d8129ad
1 changed files with 6 additions and 1 deletions

View File

@ -66,9 +66,14 @@ build_osx() {
cabal update cabal update
cabal install --dependencies-only cabal install --dependencies-only
cabal build shellcheck cabal build shellcheck
# Cabal 3 no longer has a predictable output path
path="$(find . -name 'shellcheck' -type f -perm +111)"
[[ -e "$path" ]]
for tag in $TAGS for tag in $TAGS
do do
cp "dist/build/shellcheck/shellcheck" "deploy/shellcheck-$tag.darwin-x86_64"; cp "$path" "deploy/shellcheck-$tag.darwin-x86_64";
done done
} }