Skip to content

Commit a78b953

Browse files
authored
Merge pull request #5444 from sudotac/fix-broken-completion-on-bash-4.0
fix(complete): Avoid use of -v in bash completion
2 parents 93d4045 + cd82f8c commit a78b953

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

clap_complete/src/shells/bash.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -183,12 +183,12 @@ fn option_details_for_path(cmd: &Command, path: &str) -> String {
183183
if o.get_value_hint() == ValueHint::FilePath {
184184
v.extend([
185185
"local oldifs".to_string(),
186-
"if [[ -v IFS ]]; then".to_string(),
186+
r#"if [ -n "${IFS+x}" ]; then"#.to_string(),
187187
r#" oldifs="$IFS""#.to_string(),
188188
"fi".to_string(),
189189
r#"IFS=$'\n'"#.to_string(),
190190
format!("COMPREPLY=({})", vals_for(o)),
191-
"if [[ -v oldifs ]]; then".to_string(),
191+
r#"if [ -n "${oldifs+x}" ]; then"#.to_string(),
192192
r#" IFS="$oldifs""#.to_string(),
193193
"fi".to_string(),
194194
]);
@@ -216,12 +216,12 @@ fn option_details_for_path(cmd: &Command, path: &str) -> String {
216216
if o.get_value_hint() == ValueHint::FilePath {
217217
v.extend([
218218
"local oldifs".to_string(),
219-
"if [[ -v IFS ]]; then".to_string(),
219+
r#"if [ -n "${IFS+x}" ]; then"#.to_string(),
220220
r#" oldifs="$IFS""#.to_string(),
221221
"fi".to_string(),
222222
r#"IFS=$'\n'"#.to_string(),
223223
format!("COMPREPLY=({})", vals_for(o)),
224-
"if [[ -v oldifs ]]; then".to_string(),
224+
r#"if [ -n "${oldifs+x}" ]; then"#.to_string(),
225225
r#" IFS="$oldifs""#.to_string(),
226226
"fi".to_string(),
227227
]);

clap_complete/tests/snapshots/home/static/exhaustive/bash/.bashrc

+4-4
Original file line numberDiff line numberDiff line change
@@ -557,12 +557,12 @@ _exhaustive() {
557557
;;
558558
--file)
559559
local oldifs
560-
if [[ -v IFS ]]; then
560+
if [ -n "${IFS+x}" ]; then
561561
oldifs="$IFS"
562562
fi
563563
IFS=$'\n'
564564
COMPREPLY=($(compgen -f "${cur}"))
565-
if [[ -v oldifs ]]; then
565+
if [ -n "${oldifs+x}" ]; then
566566
IFS="$oldifs"
567567
fi
568568
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then
@@ -572,12 +572,12 @@ _exhaustive() {
572572
;;
573573
-f)
574574
local oldifs
575-
if [[ -v IFS ]]; then
575+
if [ -n "${IFS+x}" ]; then
576576
oldifs="$IFS"
577577
fi
578578
IFS=$'\n'
579579
COMPREPLY=($(compgen -f "${cur}"))
580-
if [[ -v oldifs ]]; then
580+
if [ -n "${oldifs+x}" ]; then
581581
IFS="$oldifs"
582582
fi
583583
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then

clap_complete/tests/snapshots/value_hint.bash

+4-4
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ _my-app() {
5050
;;
5151
--file)
5252
local oldifs
53-
if [[ -v IFS ]]; then
53+
if [ -n "${IFS+x}" ]; then
5454
oldifs="$IFS"
5555
fi
5656
IFS=$'\n'
5757
COMPREPLY=($(compgen -f "${cur}"))
58-
if [[ -v oldifs ]]; then
58+
if [ -n "${oldifs+x}" ]; then
5959
IFS="$oldifs"
6060
fi
6161
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then
@@ -65,12 +65,12 @@ _my-app() {
6565
;;
6666
-f)
6767
local oldifs
68-
if [[ -v IFS ]]; then
68+
if [ -n "${IFS+x}" ]; then
6969
oldifs="$IFS"
7070
fi
7171
IFS=$'\n'
7272
COMPREPLY=($(compgen -f "${cur}"))
73-
if [[ -v oldifs ]]; then
73+
if [ -n "${oldifs+x}" ]; then
7474
IFS="$oldifs"
7575
fi
7676
if [[ "${BASH_VERSINFO[0]}" -ge 4 ]]; then

0 commit comments

Comments
 (0)