From 73f7ad9b0fde03ec97e6ecdb3a2508369b1e2964 Mon Sep 17 00:00:00 2001 From: navanchauhan Date: Sun, 7 Aug 2022 16:08:40 -0400 Subject: [PATCH] fix warnings --- scripts/install | 8 ++++---- scripts/restore | 2 +- scripts/upgrade | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/install b/scripts/install index dff51a3..90d901a 100755 --- a/scripts/install +++ b/scripts/install @@ -140,17 +140,17 @@ ynh_exec_as $app python3 -m venv "$final_path/venv" ynh_script_progression --message="Installing dependencies via pip..." --weight=4 pushd "$final_path" - ynh_exec_as $app "$final_path/venv/bin/pip3" install -r requirements.txt + ynh_exec_warn_less ynh_exec_as $app "$final_path/venv/bin/pip3" install -r requirements.txt popd ynh_script_progression --message="Building frontend..." --weight=5 pushd "$final_path/vue" ynh_use_nodejs - yarn install - yarn build + ynh_exec_warn_less yarn install + ynh_exec_warn_less yarn build popd -ynh_script_progression --message="Running migrations and generatic static files..." --weight=2 +ynh_script_progression --message="Running migrations and generating static files..." --weight=2 pushd "$final_path" # load environment variables export $(cat "/var/www/$app/.env" |grep "^[^#]" | xargs) diff --git a/scripts/restore b/scripts/restore index dc4a283..e1667d7 100755 --- a/scripts/restore +++ b/scripts/restore @@ -115,7 +115,7 @@ ynh_restore_file --origin_path="/etc/logrotate.d/$app" #================================================= ynh_script_progression --message="Integrating service in YunoHost..." --weight=1 -yunohost service add $app --description="A short description of the app" --log="/var/log/$app/$app.log" +yunohost service add $app --description="Smart recipe management" --log="/var/log/$app/$app.log" #================================================= # START SYSTEMD SERVICE diff --git a/scripts/upgrade b/scripts/upgrade index 0b7f6b8..588489a 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -181,7 +181,7 @@ ynh_use_logrotate --non-append #================================================= ynh_script_progression --message="Integrating service in YunoHost..." --weight=1 -yunohost service add $app --description="A short description of the app" --log="/var/log/$app/$app.log" +yunohost service add $app --description="Smart recipe management" --log="/var/log/$app/$app.log" #================================================= # START SYSTEMD SERVICE