Merge pull request #1307 from pi-hole/fix/versionwithoutwebinterface

Don't try to obtain version of web interface it it is not installed
pull/1309/head
DL6ER 7 years ago committed by GitHub
commit e0e9ebbe74

@ -81,16 +81,22 @@ getRemoteVersion(){
normalOutput() { normalOutput() {
echo "::: Pi-hole version is $(getLocalVersion "${PHGITDIR}") (Latest version is $(getRemoteVersion pi-hole))" echo "::: Pi-hole version is $(getLocalVersion "${PHGITDIR}") (Latest version is $(getRemoteVersion pi-hole))"
if [ -d "${WEBGITDIR}" ]; then
echo "::: Web-Admin version is $(getLocalVersion "${WEBGITDIR}") (Latest version is $(getRemoteVersion AdminLTE))" echo "::: Web-Admin version is $(getLocalVersion "${WEBGITDIR}") (Latest version is $(getRemoteVersion AdminLTE))"
fi
} }
webOutput() { webOutput() {
if [ -d "${WEBGITDIR}" ]; then
case "${1}" in case "${1}" in
"-l" | "--latest" ) echo $(getRemoteVersion AdminLTE);; "-l" | "--latest" ) echo $(getRemoteVersion AdminLTE);;
"-c" | "--current" ) echo $(getLocalVersion "${WEBGITDIR}");; "-c" | "--current" ) echo $(getLocalVersion "${WEBGITDIR}");;
"-h" | "--hash" ) echo $(getLocalHash "${WEBGITDIR}");; "-h" | "--hash" ) echo $(getLocalHash "${WEBGITDIR}");;
* ) echo "::: Invalid Option!"; exit 1; * ) echo "::: Invalid Option!"; exit 1;
esac esac
else
echo "::: Web interface not installed!"; exit 1;
fi
} }
coreOutput() { coreOutput() {

Loading…
Cancel
Save