diff --git a/scripts/install b/scripts/install index 483ea21..12c3a59 100644 --- a/scripts/install +++ b/scripts/install @@ -54,9 +54,11 @@ ynh_app_setting_set --app=$app --key=admin --value=$admin #================================================= # CHECK IF THE SANDBOX DOMAIN IS ALREADY SETUP WITH CORRECT CERTIFICATE #================================================= -if ! yunohost domain cert status $domain | grep -q "summary: Great!"; then - ynh_die "The domain $domain does not have correct Let's Encrypt certificates !" -fi +# We don't test that in CI +if ! [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then + if ! yunohost domain cert status $domain | grep -q "summary: Great!"; then + ynh_die "The domain $domain does not have correct Let's Encrypt certificates !" +fi fi #================================================= # STANDARD MODIFICATIONS