Skip to content

Commit

Permalink
git-completion.tcsh: fix redirect with noclobber
Browse files Browse the repository at this point in the history
tcsh users who happen to have 'set noclobber' elsewhere in their
~/.tcshrc or ~/.cshrc startup files get a 'File exist' error, and
the tcsh completion file doesn't get generated/updated.

Adding a `!` in the redirect works correctly for both clobber (default)
and 'set noclobber' users.

Reviewed-by: Christian Couder <christian.couder@gmail.com>
Signed-off-by: Ariel Faigon <github.2009@yendor.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Ariel Faigon authored and Junio C Hamano committed Jun 9, 2015
1 parent 282616c commit 0b1f688
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contrib/completion/git-completion.tcsh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ if ( ! -e ${__git_tcsh_completion_original_script} ) then
exit
endif

cat << EOF > ${__git_tcsh_completion_script}
cat << EOF >! ${__git_tcsh_completion_script}
#!bash
#
# This script is GENERATED and will be overwritten automatically.
Expand Down

0 comments on commit 0b1f688

Please sign in to comment.