Skip to content

Commit

Permalink
Fix: Fix syntax error in sasl-build.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
bokysan committed Oct 27, 2023
1 parent 19dd690 commit c60c65c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build-scripts/sasl-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e

build_pandoc() {
CAN_INSTALL=1
if [ -f /etc/alpine-release ];
if [ -f /etc/alpine-release ]; then
if ! apk add --upgrade pandoc; then
CAN_INSTALL=0
fi
Expand All @@ -12,7 +12,7 @@ build_pandoc() {
CAN_INSTALL=0
fi
fi
if [ -f /etc/alpine-release ];
if [ -f /etc/alpine-release ]; then
apk add --upgrade cabal curl llvm
else
apt-get install -y --no-install-recommends cabal curl llvm
Expand Down

0 comments on commit c60c65c

Please sign in to comment.