2016-12-27 10:44:40 +01:00
|
|
|
#!/usr/bin/expect
|
|
|
|
set timeout 5
|
|
|
|
|
|
|
|
set seafile_dir [lindex $argv 0]
|
|
|
|
set mysql_password [lindex $argv 1]
|
|
|
|
|
2018-07-06 10:28:14 +02:00
|
|
|
spawn $seafile_dir/upgrade/upgrade_6.2_6.3.sh
|
2016-12-27 10:44:40 +01:00
|
|
|
|
|
|
|
expect "to contiune"
|
|
|
|
send "\r";
|
|
|
|
|
|
|
|
interact
|