1
0
mirror of https://github.com/zokradonh/kopano-docker synced 2025-06-07 07:56:12 +00:00
kopano-docker/test.exp
Felix Bartels a0e045ff38 implement building and tagging through jenkins
* 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
2018-12-30 18:05:07 +01:00

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
}