mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
12 lines
192 B
Text
12 lines
192 B
Text
#!/usr/bin/expect
|
|
set timeout 5
|
|
|
|
set seafile_dir [lindex $argv 0]
|
|
set mysql_password [lindex $argv 1]
|
|
|
|
spawn $seafile_dir/upgrade/upgrade_6.3_7.0.sh
|
|
|
|
expect "to contiune"
|
|
send "\r";
|
|
|
|
interact
|