6 lines
171 B
Bash
Executable file
6 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 "${@}"
|