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

Fix path test in change_url

This commit is contained in:
tituspijean 2022-02-26 18:55:56 +01:00
parent f064cfa05d
commit e92f13335c
No known key found for this signature in database
GPG key ID: EF3B0D7CC0A94720

View file

@ -74,7 +74,7 @@ else
path=$old_path
fi
if [ $path =~ "\/ghost\/?" ]
if [[ $path =~ "\/ghost\/?" ]]
then
ynh_die --message="Sorry, Ghost does not support being installed on a path ending by /ghost"
fi