All checks were successful
continuous-integration/drone/push Build is passing
Rewrite the whole build process in python, for superior speed and maintenance Co-authored-by: Darragh Elliott <me@delliott.xyz> Co-authored-by: Sofía Aritz <sofiaritz@fsfe.org> Co-authored-by: tobiasd <tobiasd@fsfe.org> Co-authored-by: Tobias Diekershoff <tobiasd@fsfe.org> Reviewed-on: #4762 Co-authored-by: delliott <delliott@fsfe.org> Co-committed-by: delliott <delliott@fsfe.org>
13 lines
225 B
Plaintext
Executable File
13 lines
225 B
Plaintext
Executable File
#!/usr/bin/env expect
|
|
|
|
set timeout 20
|
|
|
|
set cmd [lrange $argv 1 end]
|
|
set password [lindex $argv 0]
|
|
|
|
eval spawn $cmd
|
|
expect "Enter passphrase*:"
|
|
send "$password\r"
|
|
lassign [wait] pid spawn_id os_error actual_exit_code
|
|
interact
|