From 264546c815f59adc7891d928c774688e0eac3f95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Mon, 2 Sep 2024 13:41:06 +0200 Subject: [PATCH] Update upgrade --- scripts/upgrade | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/upgrade b/scripts/upgrade index 512422c..4b5e8f0 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -46,15 +46,13 @@ ynh_script_progression "Installing Yarn and Buuilding application..." # Build using Yarn pushd "$install_dir" - # We must use npm to install yarn but without installing other dependencies as npm fails with them + # We must use npm to install yarn but without installing other dependencies as npm fails with them if [ -f "package.json" ]; then mv package.json package.json.mov - fi _install_yarn if [ -f "package.json.mov" ]; then mv package.json.mov package.json - fi ynh_exec_as_app "$ynh_yarn" install ynh_exec_as_app npm run build