Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/pi-hole/pi-hole.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Hildum <marcus.hildum@gmail.com>2016-10-22 20:26:00 +0300
committerMarcus Hildum <marcus.hildum@gmail.com>2016-10-22 20:26:00 +0300
commit5d6072524c63909f0052f80aa13582d359dd28ee (patch)
treee7b4bbd8e571c04b19b0f17c4987cdf541f1a4c1 /advanced/bash-completion
parent07a66a70fccc1b64e29d7d97454da0ec7d012b56 (diff)
Consistency
Missed one
Diffstat (limited to 'advanced/bash-completion')
-rw-r--r--advanced/bash-completion/pihole19
1 files changed, 9 insertions, 10 deletions
diff --git a/advanced/bash-completion/pihole b/advanced/bash-completion/pihole
index 1fae988d..dd3f050d 100644
--- a/advanced/bash-completion/pihole
+++ b/advanced/bash-completion/pihole
@@ -1,12 +1,11 @@
-_pihole()
-{
- local cur prev opts
- COMPREPLY=()
- cur="${COMP_WORDS[COMP_CWORD]}"
- prev="${COMP_WORDS[COMP_CWORD-1]}"
- opts="blacklist chronometer debug flush help query reconfigure setupLCD uninstall updateGravity updatePihole version whitelist"
+_pihole() {
+ local cur prev opts
+ COMPREPLY=()
+ cur="${COMP_WORDS[COMP_CWORD]}"
+ prev="${COMP_WORDS[COMP_CWORD-1]}"
+ opts="blacklist chronometer debug flush help query reconfigure setupLCD uninstall updateGravity updatePihole version whitelist"
- COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
- return 0
+ COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) )
+ return 0
}
-complete -F _pihole pihole \ No newline at end of file
+complete -F _pihole pihole