Update for fedora atomic

This commit is contained in:
askiiart 2024-07-10 13:21:06 -05:00
parent 46cdfbe486
commit e8242b0ad0
Signed by untrusted user who does not match committer: askiiart
GPG key ID: EA85979611654C30
13 changed files with 99 additions and 15 deletions

View file

@ -1,6 +1,4 @@
#!/usr/bin/env bash
# Exit if there's an error
set -e
# Modify constants as needed
GIT_NAME="askiiart"
GIT_EMAIL="dev@askiiart.net"
@ -20,6 +18,10 @@ if command_exists "apt-get"; then
sudo apt-get install git -y
elif command_exists "yum"; then
sudo yum install git -y
elif command_exists "rpm-ostree" && ! command_exists "git"; then
rpm-ostree install git -y
read -p "Press enter to reboot, then run do-everything.bash again"
reboot
elif command_exists "pacman"; then
sudo pacman -S git --noconfirm --needed
elif command_exists "zypp"; then