Skip to content

Commit e916f83

Browse files
committed
refactor(tar): remove redundant '\n' in command substitution
1 parent 20c2e32 commit e916f83

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

completions/tar

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -437,7 +437,7 @@ _comp_cmd_tar__try_list_archive()
437437
while read -r line; do
438438
printf "%q\n" "$(printf %q"\n" "$line")"
439439
done
440-
)" -- "$(printf "%q\n" "$cur")"))
440+
)" -- "$(printf %q "$cur")"))
441441
return 0
442442
fi
443443
}

0 commit comments

Comments
 (0)