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 -e
#!/bin/bash -e
prefix=/usr/local/bin

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

View File

@@ -1,3 +1,5 @@
#!/bin/bash -e -o pipefail
source ~/utils/utils.sh
export PATH="$PATH:/opt/pipx_bin"
@@ -15,4 +17,4 @@ for package in $pipx_packages; do
echo "Install $package into default python"
pipx install $package
fi
done
done