All checks were successful
continuous-integration/drone/push Build is passing
9 lines
179 B
Text
Executable file
9 lines
179 B
Text
Executable file
#!/usr/bin/expect -f
|
|
|
|
spawn gpg {*}$argv
|
|
|
|
expect -timeout 10 "Passphrase:"
|
|
send_user "*** passphrase sent ***"
|
|
send $::env(PLUGIN_GPG_PASSPHRASE)
|
|
send "\r"
|
|
expect -timeout -1 eof
|