diff options
author | Daniel Friesel <derf@derf.homelinux.org> | 2010-04-02 11:32:38 +0200 |
---|---|---|
committer | Daniel Friesel <derf@derf.homelinux.org> | 2010-04-02 11:32:38 +0200 |
commit | f0f3c02a3ccde07d3dc79577c7eca41ea3e8e86f (patch) | |
tree | d0aaab1de872a30a94555d2da3b501e13e18c217 /etc/completions/_cryptsetup | |
parent | 81ac4a06bff278f07620804b7d4120342b1f6522 (diff) |
Replace $var by ${var}
Diffstat (limited to 'etc/completions/_cryptsetup')
-rw-r--r-- | etc/completions/_cryptsetup | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/completions/_cryptsetup b/etc/completions/_cryptsetup index 5a327b3..9f75ec0 100644 --- a/etc/completions/_cryptsetup +++ b/etc/completions/_cryptsetup @@ -19,12 +19,12 @@ function _cryptsetup_mapping { function _cryptsetup_arguments { if (( CURRENT == 2 )) { - case $words[1] in + case ${words[1]} in create|remove|status|resize) _cryptsetup_mapping ;; luks(Format|Open|AddKey|RemoveKey|KillSlot|DelKey|UUID|Dump)|isLuks) _cryptsetup_device ;; esac } elif (( CURRENT == 3 )) { - case $words[1] in + case ${words[1]} in create) _cryptsetup_device ;; luksOpen) _cryptsetup_mapping ;; esac |