From d317154f7738b677289a53697da6f9330edfd7de Mon Sep 17 00:00:00 2001 From: Botao Date: Fri, 3 Apr 2020 13:21:53 +0800 Subject: [PATCH] Remove unnecessary escape --- entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 5acd9f8..a7714ca 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -7,7 +7,7 @@ _main() { if _git_is_dirty; then - echo \"::set-output name=changes_detected::true\" + echo "::set-output name=changes_detected::true" _setup_git @@ -22,7 +22,7 @@ _main() { _push_to_github else - echo \"::set-output name=changes_detected::false\" + echo "::set-output name=changes_detected::false" echo "Working tree clean. Nothing to commit." fi