We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 296fa99 commit f66d000Copy full SHA for f66d000
t/t7500-commit.sh
@@ -13,9 +13,9 @@ commit_msg_is () {
13
expect=commit_msg_is.expect
14
actual=commit_msg_is.actual
15
16
- printf "%s" "$(git log --pretty=format:%s%b -1)" >$expect &&
17
- printf "%s" "$1" >$actual &&
18
- test_i18ncmp $expect $actual
+ printf "%s" "$(git log --pretty=format:%s%b -1)" >"$actual" &&
+ printf "%s" "$1" >"$expect" &&
+ test_i18ncmp "$expect" "$actual"
19
}
20
21
# A sanity check to see if commit is working at all.
0 commit comments