mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 07:56:12 +00:00
* improve runtime by moving some variable assignments into the individual tag targets * add expect script to run setup.sh in travis * change language in travis * add secrets for kopano docker account
19 lines
177 B
Plaintext
Executable File
19 lines
177 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
|
|
}
|