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