summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Cady <d@cryptonomic.net>2021-10-24 17:08:39 -0400
committerAndrew Cady <d@cryptonomic.net>2021-10-24 17:08:39 -0400
commitdcf8d5d6d6124cc532afaeba4f6b5d0a3a71b828 (patch)
tree31f5ddc364c745462b061d0c0768af10a74a113a
parentdc851051f5cc2b7f42214ec0ae890d68a6209a7b (diff)
selftest.sh
-rw-r--r--selftest.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/selftest.sh b/selftest.sh
index 87b9d26..d9c304e 100644
--- a/selftest.sh
+++ b/selftest.sh
@@ -27,7 +27,8 @@ run_test()
27 ( 27 (
28 set -x 28 set -x
29 export GIT_SSH_COMMAND="ssh -p $port" 29 export GIT_SSH_COMMAND="ssh -p $port"
30 git push "${username}@${hostname}:${pwd}" "$(git branch -q --show-current)" 30 branch=$(git branch -q --show-current) || exit
31 git push "${username}@${hostname}:${pwd}" "$branch"
31 ) 32 )
32} 33}
33 34