mirror of
https://github.com/bokysan/docker-postfix.git
synced 2025-09-06 06:25:40 +08:00
Fix: Fix syntax error in sasl-build.sh
This commit is contained in:
parent
19dd690641
commit
c60c65cfd4
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ set -e
|
||||||
|
|
||||||
build_pandoc() {
|
build_pandoc() {
|
||||||
CAN_INSTALL=1
|
CAN_INSTALL=1
|
||||||
if [ -f /etc/alpine-release ];
|
if [ -f /etc/alpine-release ]; then
|
||||||
if ! apk add --upgrade pandoc; then
|
if ! apk add --upgrade pandoc; then
|
||||||
CAN_INSTALL=0
|
CAN_INSTALL=0
|
||||||
fi
|
fi
|
||||||
|
@ -12,7 +12,7 @@ build_pandoc() {
|
||||||
CAN_INSTALL=0
|
CAN_INSTALL=0
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if [ -f /etc/alpine-release ];
|
if [ -f /etc/alpine-release ]; then
|
||||||
apk add --upgrade cabal curl llvm
|
apk add --upgrade cabal curl llvm
|
||||||
else
|
else
|
||||||
apt-get install -y --no-install-recommends cabal curl llvm
|
apt-get install -y --no-install-recommends cabal curl llvm
|
||||||
|
|
Loading…
Add table
Reference in a new issue