From fa2891b9af31b1b16e7ecff6d9be4d7f010e481f Mon Sep 17 00:00:00 2001
From: hahn <axel.hahn@iml.unibe.ch>
Date: Wed, 13 Dec 2017 14:42:29 +0100
Subject: [PATCH] git_ssh wrapper: remove quoting around PKEY

---
 shellscripts/gitsshwrapper.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/shellscripts/gitsshwrapper.sh b/shellscripts/gitsshwrapper.sh
index 201c2c9f..0643f535 100644
--- a/shellscripts/gitsshwrapper.sh
+++ b/shellscripts/gitsshwrapper.sh
@@ -10,5 +10,5 @@ if [ -z "$PKEY" ]; then
     # if PKEY is not specified, run ssh using default keyfile
     ssh "$@"
 else
-    ssh -i "$PKEY" "$@"
+    ssh -i ${PKEY} "$@"
 fi
\ No newline at end of file
-- 
GitLab