From d260f991a189c5df9a1c37e904f37cf80483e290 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Pi=C3=A9dallu?= Date: Wed, 28 Feb 2024 13:33:29 +0100 Subject: [PATCH] quiet checkout --- scripts/_common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 2432fdf..db9f4dd 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -22,7 +22,7 @@ _git_clone_or_pull() { else ynh_exec_as "$app" git clone "$upstream_repository" "$repo_dir" --quiet fi - ynh_exec_as "$app" git -C "$repo_dir" checkout "$upstream_commit" + ynh_exec_as "$app" git -C "$repo_dir" checkout "$upstream_commit" --quiet ynh_exec_as "$app" git -C "$repo_dir" submodule update --init --recursive }