summaryrefslogtreecommitdiff
path: root/git-remote-testgit.sh
diff options
context:
space:
mode:
authorElia Pinto <gitter.spiros@gmail.com>2014-05-23 10:15:31 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-05-23 22:32:33 (GMT)
commitbed137d2d55a3b5cbd642b1e80cd7bd9094db8d4 (patch)
tree1f7c896f16f22e70245e05d6e7db639e6f3a7c81 /git-remote-testgit.sh
parent7bbc4e8fdb33e0a8e42e77cc05460d4c4f615f4d (diff)
downloadgit-bed137d2d55a3b5cbd642b1e80cd7bd9094db8d4.zip
git-bed137d2d55a3b5cbd642b1e80cd7bd9094db8d4.tar.gz
git-bed137d2d55a3b5cbd642b1e80cd7bd9094db8d4.tar.bz2
scripts: "export VAR=VALUE" construct is not portable
Found by check-non-portable-shell.pl Signed-off-by: Elia Pinto <gitter.spiros@gmail.com> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-remote-testgit.sh')
-rwxr-xr-xgit-remote-testgit.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/git-remote-testgit.sh b/git-remote-testgit.sh
index 6d2f282..cbf470f 100755
--- a/git-remote-testgit.sh
+++ b/git-remote-testgit.sh
@@ -13,7 +13,8 @@ refspec="${GIT_REMOTE_TESTGIT_REFSPEC-$default_refspec}"
test -z "$refspec" && prefix="refs"
-export GIT_DIR="$url/.git"
+GIT_DIR="$url/.git"
+export GIT_DIR
mkdir -p "$dir"