Re-add shebang to ssh-id-wrapper shell script

Commit 0b286f1bc3 removed the shebang line
from the shell script ssh-id-wrapper without reasoning. This script is
executable and needs a shebang for calling it directly. Thus re-add it.
This commit is contained in:
Benjamin Drung 2016-04-04 13:11:03 +02:00
parent 664043d7e7
commit ffe585f078

View file

@ -1,3 +1,4 @@
#!/bin/sh
OPTS="-oStrictHostKeyChecking=no -oPasswordAuthentication=no -oKbdInteractiveAuthentication=no -oChallengeResponseAuthentication=no"
if test -n "$GIT_IDENTITY"; then
OPTS="$OPTS -i $GIT_IDENTITY"