Update for fedora atomic
This commit is contained in:
parent
46cdfbe486
commit
e8242b0ad0
13 changed files with 99 additions and 15 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue