diff --git a/daily-use-pcs/fedora/setup-git.bash b/daily-use-pcs/fedora/setup-git.bash index aad94e1..5141e7a 100755 --- a/daily-use-pcs/fedora/setup-git.bash +++ b/daily-use-pcs/fedora/setup-git.bash @@ -1,5 +1,6 @@ #!/bin/bash - +# Exit if there's an error +set -e # Modify constants as needed GITEA_URL="https://git.askiiart.net" REAL_NAME="askiiart" diff --git a/zsh/zsh-setup.bash b/zsh/zsh-setup.bash index 6263073..011dc3b 100755 --- a/zsh/zsh-setup.bash +++ b/zsh/zsh-setup.bash @@ -1,3 +1,6 @@ +#!/bin/bash +# Exit if there's an error +set -e declare -A osInfo; osInfo[/etc/redhat-release]=yum osInfo[/etc/arch-release]=pacman