mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-12-12 15:35:39 +00:00
Compare commits
No commits in common. "9de85d1aa23bb487282cbd8281b955252cf257cb" and "2c2765115fe6c206347c595475698376048c558a" have entirely different histories.
9de85d1aa2
...
2c2765115f
|
@ -10,19 +10,21 @@ done
|
|||
|
||||
case "$pkg_mgr" in
|
||||
apt)
|
||||
sudo add-apt-repository -y ppa:flatpak/stable
|
||||
# Aggiorna l'indice dei pacchetti, poi installa o aggiorna solo i pacchetti indicati
|
||||
sudo apt update
|
||||
sudo apt install -y flatpak flatpak-builder p7zip-full xmlstarlet bzip2 curl jq
|
||||
sudo apt install --only-upgrade -y flatpak flatpak-builder p7zip-full xmlstarlet bzip2 curl jq
|
||||
;;
|
||||
pacman)
|
||||
sudo pacman -Syu --noconfirm flatpak flatpak-builder p7zip xmlstarlet bzip2
|
||||
# Aggiorna i pacchetti specificati senza influenzare il resto del sistema
|
||||
sudo pacman -Syu --needed --noconfirm flatpak flatpak-builder p7zip xmlstarlet bzip2
|
||||
;;
|
||||
rpm-ostree)
|
||||
echo "When using a distro with rpm-ostree, you shouldn't build directly on the host. Try using a distrobox."
|
||||
exit 1
|
||||
;;
|
||||
dnf)
|
||||
sudo dnf install -y flatpak flatpak-builder p7zip p7zip-plugins xmlstarlet bzip2 curl
|
||||
# Aggiorna i pacchetti specificati senza influenzare il resto del sistema
|
||||
sudo dnf upgrade --refresh -y flatpak flatpak-builder p7zip p7zip-plugins xmlstarlet bzip2 curl
|
||||
;;
|
||||
*)
|
||||
echo "Package manager $pkg_mgr not supported. Please open an issue."
|
||||
|
|
Loading…
Reference in a new issue