fsfe-website/exp.exp
delliott 4468cf2337
All checks were successful
continuous-integration/drone/push Build is passing
feat/python-rewrite (#4762)
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>
2025-04-24 12:56:29 +00:00

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