From 210ea25b055a34b9335a3c38534c08cb0b281721 Mon Sep 17 00:00:00 2001 From: GammaGames Date: Mon, 25 Nov 2024 12:16:14 -0700 Subject: [PATCH] cleanup --- entrypoint.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 113a459..b2a33d4 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -69,11 +69,9 @@ echo "======= CLI Version =======" sh -c "${TARGET} --version" # print version echo "===========================" if [[ "$INPUT_CAPTURE_STDOUT" == 'true' ]]; then - echo 'stdout<> $GITHUB_OUTPUT # use a heredoc for multiline output + echo 'stdout<> $GITHUB_OUTPUT # use heredoc for multiline output sh -c "${TARGET} $*" >> $GITHUB_OUTPUT # run the command echo 'EOF' >> $GITHUB_OUTPUT - - echo 'stdout=foobar' >> $GITHUB_OUTPUT else sh -c "${TARGET} $*" # run the command fi