Remove unnecessary escape

This commit is contained in:
Botao 2020-04-03 13:21:53 +08:00
parent 36489f4cb5
commit d317154f77

View File

@ -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