Fix errors with the script exiting with status '1'
This commit is contained in:
parent
d7d16ecab2
commit
9d8c0ca74c
14
fetch
14
fetch
|
@ -362,7 +362,7 @@ case "$(uname)" in
|
|||
|
||||
*)
|
||||
printf "%s\n" "Couldn't detect OS, exiting"
|
||||
exit
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
|
@ -435,6 +435,11 @@ case "$os" in
|
|||
esac
|
||||
ascii_distro="$distro"
|
||||
|
||||
getdistro () {
|
||||
distro="$distro"
|
||||
}
|
||||
|
||||
|
||||
# }}}
|
||||
|
||||
# Title {{{
|
||||
|
@ -1714,6 +1719,13 @@ bold () {
|
|||
|
||||
# }}}
|
||||
|
||||
# Linebreak {{{
|
||||
|
||||
getlinebreak () {
|
||||
linebreak=""
|
||||
}
|
||||
|
||||
# }}}
|
||||
|
||||
clear="\033[0m"
|
||||
|
||||
|
|
Reference in New Issue