Skip to content

Commit ada9ecd

Browse files
committed
Merge branch 'af/tcsh-completion-noclobber' into maint
The tcsh completion writes a bash scriptlet but that would have failed for users with noclobber set. * af/tcsh-completion-noclobber: git-completion.tcsh: fix redirect with noclobber
2 parents 7c62118 + 0b1f688 commit ada9ecd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

contrib/completion/git-completion.tcsh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ if ( ! -e ${__git_tcsh_completion_original_script} ) then
4141
exit
4242
endif
4343

44-
cat << EOF > ${__git_tcsh_completion_script}
44+
cat << EOF >! ${__git_tcsh_completion_script}
4545
#!bash
4646
#
4747
# This script is GENERATED and will be overwritten automatically.

0 commit comments

Comments
 (0)