aboutsummaryrefslogtreecommitdiff
path: root/t/t5517-push-mirror.sh
diff options
context:
space:
mode:
authorElia Pinto <gitter.spiros@gmail.com>2015-12-23 14:45:58 +0100
committerJunio C Hamano <gitster@pobox.com>2015-12-28 13:37:05 -0800
commit5ee0d624fbb1f3874067776cb9cdecdbbcdd6b84 (patch)
tree3c03ee26f872208515a543271517b2926a83b41b /t/t5517-push-mirror.sh
parentbf45242ba7dbc23831d90a304572d29d4e1ec590 (diff)
downloadgit-5ee0d624fbb1f3874067776cb9cdecdbbcdd6b84.tar.gz
git-5ee0d624fbb1f3874067776cb9cdecdbbcdd6b84.tar.xz
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>
Diffstat (limited to 't/t5517-push-mirror.sh')
-rwxr-xr-xt/t5517-push-mirror.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5517-push-mirror.sh b/t/t5517-push-mirror.sh
index 12a5dfb17..02f160aae 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