Skip to content

Commit

Permalink
Fix: Return from trying to build pandoc if install is successful
Browse files Browse the repository at this point in the history
  • Loading branch information
bokysan committed Oct 27, 2023
1 parent a23f0a3 commit b343a7b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions build-scripts/sasl-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ build_pandoc() {
CAN_INSTALL=0
fi
fi

if [ "${CAN_INSTALL}" -eq "1" ; then
return
fi

if [ -f /etc/alpine-release ]; then
apk add --upgrade cabal curl llvm
else
Expand Down

0 comments on commit b343a7b

Please sign in to comment.