handle passing arguments to version script
This commit is contained in:
parent
013d77488a
commit
77e8be09a1
5
pihole
5
pihole
|
@ -193,7 +193,8 @@ uninstallFunc() {
|
|||
}
|
||||
|
||||
versionFunc() {
|
||||
/opt/pihole/version.sh
|
||||
shift
|
||||
/opt/pihole/version.sh "$@"
|
||||
exit 0
|
||||
}
|
||||
|
||||
|
@ -235,7 +236,7 @@ case "$1" in
|
|||
"-s" | "setupLCD" ) setupLCDFunction;;
|
||||
"-c" | "chronometer" ) chronometerFunc "$@";;
|
||||
"-h" | "help" ) helpFunc;;
|
||||
"-v" | "version" ) versionFunc;;
|
||||
"-v" | "version" ) versionFunc "$@";;
|
||||
"-q" | "query" ) queryFunc "$@";;
|
||||
"uninstall" ) uninstallFunc;;
|
||||
* ) helpFunc;;
|
||||
|
|
Loading…
Reference in New Issue