Fix: Fix syntax error in sasl-build.sh

This commit is contained in:
Bojan Čekrlić 2023-10-27 12:23:56 +02:00
parent 19dd690641
commit c60c65cfd4

View file

@ -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
@ -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