From 00c75a481da7b826035f944be69177f70cb0ed7f Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Mon, 18 May 2026 19:19:40 +0000 Subject: [PATCH] Fix syntax error in source-release.sh conditionals --- debian/resources/switch/source-release.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/debian/resources/switch/source-release.sh b/debian/resources/switch/source-release.sh index d605d28..c51b451 100755 --- a/debian/resources/switch/source-release.sh +++ b/debian/resources/switch/source-release.sh @@ -119,7 +119,7 @@ if [ ."$switch_branch" != ."master" ] && [ ."$switch_branch" = ."stable" ]; then echo "Using version $switch_version" # Get the source code using git - if [ ."$switch_version" == ."1.11" ] then + if [ ."$switch_version" == ."1.11" ]; then git clone https://github.com/signalwire/freeswitch.git freeswitch-$switch_version # Change the working directory @@ -130,7 +130,7 @@ if [ ."$switch_branch" != ."master" ] && [ ."$switch_branch" = ."stable" ]; then end # Get the source code using git - if [ ."$switch_version" == ."1.10.12" ] then + if [ ."$switch_version" == ."1.10.12" ]; then git clone https://github.com/fusionpbx/freeswitch freeswitch-$switch_version # Change the working directory