Skip to content

Commit

Permalink
Remove tail call
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhigulin Pavel committed Dec 20, 2018
1 parent bc9e3f6 commit 56fec5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/etc/cargo.bashcomp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ _cargo()
} &&
complete -F _cargo cargo

__cargo_commands=$(cargo --list 2>/dev/null | tail -n +2 | awk 'NR>1 {print $1}')
__cargo_commands=$(cargo --list 2>/dev/null | awk 'NR>1 {print $1}')

_locate_manifest(){
local manifest=`cargo locate-project 2>/dev/null`
Expand Down

0 comments on commit 56fec5c

Please sign in to comment.