diff options
author | Elia Pinto <gitter.spiros@gmail.com> | 2016-01-07 14:51:46 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-01-07 13:58:17 -0800 |
commit | 7b8c0b53c320b03cb641f4e4c7b12049a36bd84e (patch) | |
tree | f4cfd10d6d58d53f19d29d4e3f730d147700debf /t/t6132-pathspec-exclude.sh | |
parent | 59f9c6c3cd308342ecf814a2a7636a9395c40e49 (diff) | |
download | git-7b8c0b53c320b03cb641f4e4c7b12049a36bd84e.tar.gz |
t/t6132-pathspec-exclude.sh: use the $( ... ) construct for command substitution
The Git CodingGuidelines prefer the $(...) construct for command
substitution instead of using the backquotes `...`.
The backquoted form is the traditional method for command
substitution, and is supported by POSIX. However, all but the
simplest uses become complicated quickly. In particular, embedded
command substitutions and/or the use of double quotes require
careful escaping with the backslash character.
The patch was generated by:
for _f in $(find . -name "*.sh")
do
perl -i -pe 'BEGIN{undef $/;} s/`(.+?)`/\$(\1)/smg' "${_f}"
done
and then carefully proof-read.
Signed-off-by: Elia Pinto <gitter.spiros@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t6132-pathspec-exclude.sh')
-rwxr-xr-x | t/t6132-pathspec-exclude.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t6132-pathspec-exclude.sh b/t/t6132-pathspec-exclude.sh index e1e1b1fa38..d51595cf6b 100755 --- a/t/t6132-pathspec-exclude.sh +++ b/t/t6132-pathspec-exclude.sh @@ -7,7 +7,7 @@ test_description='test case exclude pathspec' test_expect_success 'setup' ' for p in file sub/file sub/sub/file sub/file2 sub/sub/sub/file sub2/file; do if echo $p | grep /; then - mkdir -p `dirname $p` + mkdir -p $(dirname $p) fi && : >$p && git add $p && |