forked from norman/fusionpbx-install.sh-github-mirror
Fix condition for checking OS codename and branch (#452)
This commit is contained in:
2
debian/resources/switch/source-release.sh
vendored
2
debian/resources/switch/source-release.sh
vendored
@@ -91,7 +91,7 @@ fi
|
||||
cd /usr/src
|
||||
|
||||
#check for master
|
||||
if [ ."$os_codename" != ."trixie" ] || [ ."$switch_branch" = ."master" ]; then
|
||||
if [ ."$os_codename" = ."trixie" ] || [ ."$switch_branch" = ."master" ]; then
|
||||
#master branch
|
||||
echo "Using version master"
|
||||
rm -r /usr/src/freeswitch
|
||||
|
||||
Reference in New Issue
Block a user