Fixed sh compatibility

This commit is contained in:
Sebastian 2024-08-30 00:01:40 +02:00
parent 0c90264710
commit d8103b5a0f

View file

@ -33,7 +33,7 @@ if [ "$system_type" = "Darwin" ]; then
if ! command -v brew >/dev/null 2>&1; then if ! command -v brew >/dev/null 2>&1; then
echo "Do you want to install homebrew? (y/n)" echo "Do you want to install homebrew? (y/n)"
read -r install_homebrew read -r install_homebrew
if [ $install_homebrew == "y" ]; then if [ $install_homebrew = "y" ]; then
echo "Installing homebrew" echo "Installing homebrew"
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)" /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
fi fi
@ -49,20 +49,20 @@ if [ "$system_type" = "Linux" ]; then
echo "Do you want to install the most important packages ($raspberrypi_essentials)? (y/n)" echo "Do you want to install the most important packages ($raspberrypi_essentials)? (y/n)"
read -r install_raspberrypi_essentials read -r install_raspberrypi_essentials
if [ $install_raspberrypi_essentials == "y" ]; then if [ $install_raspberrypi_essentials = "y" ]; then
install_this_now="$install_this_now $raspberrypi_essentials" install_this_now="$install_this_now $raspberrypi_essentials"
fi fi
echo "Do you want to install the packages for printing? (y/n)" echo "Do you want to install the packages for printing? (y/n)"
read -r install_raspberrypi_printer read -r install_raspberrypi_printer
if [ $install_raspberrypi_printer == "y" ]; then if [ $install_raspberrypi_printer = "y" ]; then
install_this_now="$install_this_now $raspberrypi_printer" install_this_now="$install_this_now $raspberrypi_printer"
fi fi
echo "Do you want to install the packages for the camera? (y/n)" echo "Do you want to install the packages for the camera? (y/n)"
read -r install_raspberrypi_camera read -r install_raspberrypi_camera
if [ $install_raspberrypi_camera == "y" ]; then if [ $install_raspberrypi_camera = "y" ]; then
install_this_now="$install_this_now $raspberrypi_camera" install_this_now="$install_this_now $raspberrypi_camera"
fi fi
@ -78,7 +78,7 @@ fi
if command -v ufw >/dev/null 2>&1; then if command -v ufw >/dev/null 2>&1; then
echo "Do you want to enable the firewall (ufw with ssh allowed)? (y/n)" echo "Do you want to enable the firewall (ufw with ssh allowed)? (y/n)"
read -r enable_ufw read -r enable_ufw
if [ $enable_ufw == "y" ]; then if [ $enable_ufw = "y" ]; then
ufw allow ssh ufw allow ssh
ufw enable ufw enable
@ -92,14 +92,14 @@ fi
if command -v /bin/zsh >/dev/null 2>&1; then if command -v /bin/zsh >/dev/null 2>&1; then
echo "Do you want to set zsh as default shell? (y/n)" echo "Do you want to set zsh as default shell? (y/n)"
read -r set_default_shell read -r set_default_shell
if [ $set_default_shell == "y" ]; then if [ $set_default_shell = "y" ]; then
chsh -s /bin/zsh chsh -s /bin/zsh
fi fi
fi fi
echo "Do you want to install all linters for vim? (y/n)" echo "Do you want to install all linters for vim? (y/n)"
read -r install_linters read -r install_linters
if [ $install_linters == "y" ]; then if [ $install_linters = "y" ]; then
install_npm_linters install_npm_linters
install_python_linters install_python_linters
fi fi