fix shbang

This commit is contained in:
Sergey Dolin
2020-10-30 01:01:30 +05:00
parent cab74c1ab9
commit 541036c2d1
3 changed files with 6 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/bash -e -o pipefail
if [ -z "$1" ]; then
echo "No Xamarin SDK specified."
exit 0
@@ -19,4 +19,4 @@ do
echo "Set Current folder for ${FOLDER}"
sudo rm -f ${FOLDER}/Current
sudo ln -s ${FOLDER}/${XAMARIN_SDK} ${FOLDER}/Current
done
done