0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-25 06:44:38 +03:00
yandex-music-linux/.github/workflows/update_packages.sh

26 lines
486 B
Bash
Raw Normal View History

2024-02-02 18:45:51 +03:00
#!/bin/bash
set -e
2024-02-02 18:45:51 +03:00
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
2024-02-09 15:07:50 +03:00
sh ./utility/generate_packages.sh
2024-02-02 18:45:51 +03:00
git config --global --add safe.directory "*"
;;
*)
echo "Operating system is not recognized."
;;
esac