mirror of https://github.com/grafana/grafana.git
8 lines
161 B
Bash
8 lines
161 B
Bash
|
#!/usr/bin/env expect
|
||
|
|
||
|
set password [lindex $argv 0]
|
||
|
spawn gpg --detach-sign --armor /tmp/sign-this
|
||
|
expect "Enter passphrase: "
|
||
|
send -- "$password\r"
|
||
|
expect eof
|