Files
nocodb/docker-compose/1_Auto_Upstall/tests/expects/configure/upgrade.sh
2024-12-26 10:25:44 +05:30

20 lines
331 B
Bash
Executable File

#!/usr/bin/expect -f
# Configure timeout for each expect command
set timeout 20
# Start your main script
set env(PATH) "$env(WORKING_DIR)/mocks:$env(PATH)"
spawn bash ../../noco.sh
expect "Do you want to reinstall NocoDB*"
send "N\r"
expect "Enter your choice: "
send "5\r"
expect "Enter your choice: "
send "0\r"
expect EOF