mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 16:06:14 +00:00
29 lines
263 B
Plaintext
Executable File
29 lines
263 B
Plaintext
Executable File
#!/usr/bin/expect
|
|
|
|
# uncomment to debug expect:
|
|
#exp_internal 1
|
|
|
|
spawn "./setup.sh"
|
|
|
|
expect {
|
|
"]:" {
|
|
send "\r"
|
|
exp_continue
|
|
}
|
|
"):" {
|
|
send "\r"
|
|
exp_continue
|
|
}
|
|
eof
|
|
}
|
|
|
|
spawn "./setup-update-tag.sh"
|
|
|
|
expect {
|
|
"#?" {
|
|
send "\r"
|
|
exp_continue
|
|
}
|
|
eof
|
|
}
|