diff options
author | Junio C Hamano <gitster@pobox.com> | 2010-02-25 23:21:50 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-02-25 23:21:50 -0800 |
commit | f7311dc2293d9c52827c518933c80bd664023e97 (patch) | |
tree | 5516438f829cf0f0a60a22667f7f142843f058a6 | |
parent | 3fdcdbdf301dadb7af58fe038501f0af6419a2e0 (diff) | |
parent | 64da6e20de1f2246e2d8d9d85e53ca3cbf393212 (diff) | |
download | git-f7311dc2293d9c52827c518933c80bd664023e97.tar.gz git-f7311dc2293d9c52827c518933c80bd664023e97.tar.xz |
Merge branch 'maint'
* maint:
t3301-notes: insert a shbang line in ./fake_editor.sh
-rwxr-xr-x | t/t3301-notes.sh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/t/t3301-notes.sh b/t/t3301-notes.sh index 5d9604b81..714626d2d 100755 --- a/t/t3301-notes.sh +++ b/t/t3301-notes.sh @@ -8,6 +8,7 @@ test_description='Test commit notes' . ./test-lib.sh cat > fake_editor.sh << \EOF +#!/bin/sh echo "$MSG" > "$1" echo "$MSG" >& 2 EOF |