From 4b8f53d10e3541d5836b51d3a66552309e1b9934 Mon Sep 17 00:00:00 2001 From: orhun Date: Fri, 18 Jun 2021 20:09:25 +0300 Subject: [PATCH] refactor(entrypoint): remove output redirection --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 9497218..6efaf86 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -7,7 +7,7 @@ OUTPUT=${OUTPUT:="git-cliff/CHANGELOG.md"} mkdir -p "$(dirname $OUTPUT)" # Execute git-cliff -git-cliff "$@" > "$OUTPUT" +git-cliff "$@" exit_code=$? # Output to console