File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ _cryptsetup_device()
14
14
_cryptsetup_action ()
15
15
{
16
16
local ret IFS=$' \t\n '
17
- _comp_dequote " $1 " || return 1
17
+ _comp_dequote " ${1-} " || return 1
18
18
local cmd=${ret:- cryptsetup}
19
19
local actions=$(
20
20
{
@@ -46,7 +46,7 @@ _cryptsetup_action()
46
46
filtering_pattern=${filtering_pattern% $' \n ' }
47
47
48
48
local filtered_actions
49
- filtered_actions=$( strings " $path " | grep -Fx " $filtering_pattern " | sort -u) &&
49
+ filtered_actions=$( strings " $path " | command grep -Fx " $filtering_pattern " | sort -u) &&
50
50
[[ $filtered_actions ]] &&
51
51
actions=$filtered_actions
52
52
fi
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def test_2(self, completion):
13
13
@pytest .mark .complete (
14
14
"cryptsetup luksE" ,
15
15
require_cmd = True ,
16
- skipif = '! strings "$(type -P cryptsetup)" | grep -qFx luksErase' ,
16
+ skipif = r '! { cryptsetup --help; man cryptsetup; } 2>/dev/null | command grep -qE "(^|[[:space:]]) luksErase([[:space:]]|\$)" ' ,
17
17
)
18
18
def test_github_issue758 (self , completion ):
19
19
assert completion == "rase"
You can’t perform that action at this time.
0 commit comments