From 0cb2aad7cc2e8f1c6f4d1f0880b156baa8ef406f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Fri, 8 Mar 2024 21:32:52 +0100 Subject: [PATCH] goenv install quiet --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 38a7aed..2774639 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -264,7 +264,7 @@ ynh_install_go() { # Install the requested version of Go local final_go_version=$(goenv latest --print $go_version) ynh_print_info --message="Installation of Go-$final_go_version" - goenv install --skip-existing $final_go_version + goenv install --skip-existing --quiet $final_go_version # Store go_version into the config of this app ynh_app_setting_set --app=$YNH_APP_INSTANCE_NAME --key=go_version --value=$final_go_version