mirror of
https://github.com/kennethreitz-archive/heroku-splinder.git
synced 2026-06-21 07:50:57 +00:00
7 lines
171 B
Bash
Executable File
7 lines
171 B
Bash
Executable File
#!/bin/sh -e
|
|
# This script gets git to run gpg with a --passphrase-file option.
|
|
|
|
PATH=`echo $PATH | sed 's/^[^:]*://'`
|
|
|
|
gpg --batch --passphrase-file=$GPG_PASSFILE "${@}"
|