From 5994e78c563f6b8fd7e8da2f19a2714ce8f2fa81 Mon Sep 17 00:00:00 2001 From: Eli Gladman <8713153+egladman@users.noreply.github.com> Date: Wed, 6 Dec 2023 19:13:31 -0500 Subject: [PATCH] Do not suppress install output Signed-off-by: Eli Gladman <8713153+egladman@users.noreply.github.com> --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index e06a4f2..3c6ad79 100644 --- a/action.yml +++ b/action.yml @@ -43,7 +43,7 @@ runs: # The install.sh script creates path ${prefix_dir}/bin cd "$prefix_dir" && { \ curl -sL https://dl.dagger.io/dagger/install.sh 2>/dev/null | \ - DAGGER_VERSION=${{ inputs.version }} sh 2>/dev/null; } + DAGGER_VERSION=${{ inputs.version }} sh; } shell: bash - run: |