mirror of
https://github.com/diegosouzapw/OmniRoute.git
synced 2026-08-12 18:22:48 +03:00
17 lines
260 B
Plaintext
Executable File
17 lines
260 B
Plaintext
Executable File
#!/usr/bin/expect -f
|
|
# Auto-confirms opencode prompts
|
|
set timeout -1
|
|
spawn opencode {*}$argv
|
|
|
|
expect {
|
|
"Are you sure you want to run this command?" {
|
|
send "yes\r"
|
|
exp_continue
|
|
}
|
|
"Allow opencode to" {
|
|
send "yes\r"
|
|
exp_continue
|
|
}
|
|
eof
|
|
}
|