Skip to content

Commit 7796f1b

Browse files
committed
rpm-ostree workaround fix #867
1 parent 4f4a745 commit 7796f1b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

restore.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,10 @@ install_depends() {
631631
prepare_udev_rules root usbmuxd
632632

633633
elif [[ $distro == "fedora-atomic" ]]; then
634-
rpm-ostree install patch vim-common zenity
634+
local packages=(patch vim-common zenity)
635+
for package in "${packages[@]}"; do
636+
rpm-ostree install $package
637+
done
635638
print "* You may need to reboot to apply changes with rpm-ostree. Perform a reboot after this before running the script again."
636639

637640
elif [[ $distro == "opensuse" ]]; then

0 commit comments

Comments
 (0)