mirror of
https://github.com/cucumber-sp/yandex-music-linux.git
synced 2024-12-24 14:34:39 +03:00
b6f6d63d61
Previously errors in actions was ignored Change-Id: Ida263df740077926bcd8fd79a725f0cac447e59d
26 lines
478 B
Bash
26 lines
478 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [ -f /etc/os-release ]; then
|
|
. /etc/os-release
|
|
OS=$NAME
|
|
elif [ -f /etc/lsb-release ]; then
|
|
. /etc/lsb-release
|
|
OS=$DISTRIB_ID
|
|
else
|
|
OS=$(uname -s)
|
|
fi
|
|
|
|
case $OS in
|
|
"Arch Linux")
|
|
echo "Arch Linux"
|
|
pacman -S --noconfirm git sudo base-devel jq nix
|
|
sh ./generate_packages.sh
|
|
git config --global --add safe.directory "*"
|
|
;;
|
|
*)
|
|
echo "Operating system is not recognized."
|
|
;;
|
|
esac
|