mirror of
https://github.com/grafana/grafana.git
synced 2025-01-28 17:24:59 -06:00
8 lines
161 B
Bash
Executable File
8 lines
161 B
Bash
Executable File
#!/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
|