mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 12:03:00 +02:00
Return codes for unsupported distro
This commit is contained in:
parent
a5dc2c4408
commit
c9a1b54678
1 changed files with 11 additions and 9 deletions
|
@ -152,7 +152,10 @@ check_user(){
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
generic_install(){
|
generic_install(){
|
||||||
fail "Unrecognized OS: $distro. Please report this upstream for whitelisting."
|
fail "Unrecognized OS: $distro."
|
||||||
|
log "Please report this upstream for whitelisting and attach your SCMD.log"
|
||||||
|
log "Log file can be found at $HOME/.local/share/dzgui/helpers/SCMD.log"
|
||||||
|
|
||||||
}
|
}
|
||||||
fedora_install(){
|
fedora_install(){
|
||||||
#TODO
|
#TODO
|
||||||
|
@ -275,16 +278,15 @@ check_dist(){
|
||||||
}
|
}
|
||||||
return_to_dzg(){
|
return_to_dzg(){
|
||||||
if [[ $ret -eq 1 ]]; then
|
if [[ $ret -eq 1 ]]; then
|
||||||
fail "Errors occurred."
|
fail "Errors occurred. Type any key to return to DZGUI and kick off manual install."
|
||||||
|
read -n1 key
|
||||||
|
case $key in
|
||||||
|
*) exit 1 ;;
|
||||||
|
esac
|
||||||
else
|
else
|
||||||
pass "Mods installed successfully."
|
$(cd $HOME/.local/share/dzgui/helpers; zenity --text-info --html --width=390 --height=452 --filename="d.html" 2>/dev/null)
|
||||||
|
return 0
|
||||||
fi
|
fi
|
||||||
# read -n1 key
|
|
||||||
# case $key in
|
|
||||||
# *) exit 0 ;;
|
|
||||||
# esac
|
|
||||||
$(cd $HOME/.local/share/dzgui/helpers; zenity --text-info --html --width=390 --height=452 --filename="d.html" 2>/dev/null)
|
|
||||||
return 0
|
|
||||||
}
|
}
|
||||||
cleanup(){
|
cleanup(){
|
||||||
tput cnorm
|
tput cnorm
|
||||||
|
|
Loading…
Reference in a new issue