diff options
author | Elia Pinto <gitter.spiros@gmail.com> | 2015-12-23 14:45:58 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-12-28 13:37:05 -0800 |
commit | 5ee0d624fbb1f3874067776cb9cdecdbbcdd6b84 (patch) | |
tree | 3c03ee26f872208515a543271517b2926a83b41b | |
parent | bf45242ba7dbc23831d90a304572d29d4e1ec590 (diff) | |
download | git-5ee0d624fbb1f3874067776cb9cdecdbbcdd6b84.tar.gz |
t/t5517-push-mirror.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>
-rwxr-xr-x | t/t5517-push-mirror.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5517-push-mirror.sh b/t/t5517-push-mirror.sh index 12a5dfb17e..02f160aae0 100755 --- a/t/t5517-push-mirror.sh +++ b/t/t5517-push-mirror.sh @@ -4,7 +4,7 @@ test_description='pushing to a mirror repository' . ./test-lib.sh -D=`pwd` +D=$(pwd) invert () { if "$@"; then |