1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nextcloud_ynh.git synced 2024-09-03 19:55:57 +02:00

Merge pull request #7 from YunoHost-Apps/maniackcrudelis-patch-3

Fix temporaire du restore
This commit is contained in:
Maniack Crudelis 2017-01-04 23:57:21 +01:00 committed by GitHub
commit ddf42c9537

View file

@ -18,8 +18,11 @@ path=$(ynh_app_setting_get "$app" path)
dbpass=$(ynh_app_setting_get "$app" mysqlpwd)
# TODO: Check domain/path availability with app helper
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|| ynh_die "The path ${domain}${path} is not available for app installation."
# Temporarily conditioned, see https://dev.yunohost.org/issues/593
if [ ${#path} -gt 1 ]; then
sudo yunohost app checkurl "${domain}${path}" -a "$app" \
|| ynh_die "The path ${domain}${path} is not available for app installation."
fi
# Check destination directory
DESTDIR="/var/www/$app"