From beddec96a405de9416c76c0c966c2640c261f040 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Du=C5=A1an=20Poizl?= Date: Wed, 14 Aug 2024 09:19:20 +0200 Subject: [PATCH] Fix missing ; --- build-soft-stable.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-soft-stable.sh b/build-soft-stable.sh index 7fc7cf8..1802115 100755 --- a/build-soft-stable.sh +++ b/build-soft-stable.sh @@ -35,7 +35,7 @@ make -j $JOBS || { echo "LibXISF compilation failed"; exit 1; } sudo make install || { echo "LibXISF installation failed"; exit 1; } cd "$ROOTDIR" -[ ! -d "indi" ] && { git clone https://github.com/indilib/indi.git || { echo "Failed to clone indi"; exit 1 } } +[ ! -d "indi" ] && { git clone https://github.com/indilib/indi.git || { echo "Failed to clone indi"; exit 1; } } cd indi git fetch origin git switch -d --discard-changes $INDI_COMMIT @@ -84,7 +84,7 @@ sudo ldconfig [ "$1" != "phd2" ] && exit cd "$ROOTDIR" -[ ! -d "phd2" ] && { git clone https://github.com/OpenPHDGuiding/phd2.git || { echo "Failed to clone PHD2"; exit 1 } } +[ ! -d "phd2" ] && { git clone https://github.com/OpenPHDGuiding/phd2.git || { echo "Failed to clone PHD2"; exit 1; } } cd phd2 git fetch origin git switch -d --discard-changes "v2.6.12"