summaryrefslogtreecommitdiff
path: root/completions/pkgtool
diff options
context:
space:
mode:
Diffstat (limited to 'completions/pkgtool')
-rw-r--r--completions/pkgtool6
1 files changed, 3 insertions, 3 deletions
diff --git a/completions/pkgtool b/completions/pkgtool
index 95d42aaa..8bea9cdd 100644
--- a/completions/pkgtool
+++ b/completions/pkgtool
@@ -15,7 +15,7 @@ _pkgtool()
return
;;
--source_device)
- COMPREPLY=( $( compgen -f -d -- "${cur:-/dev/}" ) )
+ COMPREPLY=( $(compgen -f -d -- "${cur:-/dev/}") )
return
;;
--tagfile)
@@ -25,9 +25,9 @@ _pkgtool()
esac
if [[ "$cur" == -* ]]; then
- COMPREPLY=( $( compgen -W '--sets --ignore-tagfiles --tagfile
+ COMPREPLY=( $(compgen -W '--sets --ignore-tagfiles --tagfile
--source-mounted --source_dir --target_dir --source_device' \
- -- "$cur" ) )
+ -- "$cur") )
fi
} &&
complete -F _pkgtool pkgtool