summaryrefslogtreecommitdiff
path: root/scripts/ssh_wrapper.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2015-01-22 16:22:15 +0100
committerSebastian Thiel <byronimo@gmail.com>2015-01-22 16:22:21 +0100
commit2ce3fe7cef8910aadc2a2b39a3dab4242a751380 (patch)
treef7d25f8897aac64b434ad4282a917ed32ae34952 /scripts/ssh_wrapper.py
parent6f038611ff120f8283f0f1a56962f95b66730c72 (diff)
downloadgitpython-2ce3fe7cef8910aadc2a2b39a3dab4242a751380.tar.gz
Intermediate commit on my way to get this finalized.
Renamed context manager 'with_environment' to 'custom_environment'. On my way to implement sshkey test.
Diffstat (limited to 'scripts/ssh_wrapper.py')
-rwxr-xr-xscripts/ssh_wrapper.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/scripts/ssh_wrapper.py b/scripts/ssh_wrapper.py
deleted file mode 100755
index af657f60..00000000
--- a/scripts/ssh_wrapper.py
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env python
-
-import os
-import subprocess
-import sys
-
-ssh_options = ['-i', os.environ['GIT_SSH_KEY_FILE']]
-ret_code = subprocess.call(['ssh'] + ssh_options + sys.argv[1:])
-sys.exit(ret_code)