mirror of
https://github.com/YunoHost-Apps/seafile_ynh.git
synced 2024-09-03 20:26:01 +02:00
Fix dependance for buster
This commit is contained in:
parent
f9b9e934f6
commit
637a32aa57
1 changed files with 5 additions and 1 deletions
|
@ -41,7 +41,11 @@ admin_email=$(sudo yunohost user info $admin | grep mail: | sed "s/mail: //g")
|
|||
|
||||
# Check dependencies
|
||||
sudo apt-get update
|
||||
sudo apt-get install -qq python2.7 python-setuptools python-simplejson python-imaging python-mysqldb python-flup expect
|
||||
if [ "$(lsb_release --codename --short)" == "stretch" ]; then
|
||||
sudo apt-get install -qq python2.7 python-setuptools python-simplejson python-imaging python-mysqldb python-flup expect
|
||||
else
|
||||
sudo apt-get install -qq python2.7 python-setuptools python-simplejson python-pil python-mysqldb python-flup expect
|
||||
fi
|
||||
|
||||
# Copy files to the right place
|
||||
test -e $final_path && sudo rm -rf "$final_path"
|
||||
|
|
Loading…
Reference in a new issue