diff --git a/entrypoint.sh b/entrypoint.sh index 060bbdf..a322476 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -25,7 +25,7 @@ if [ -z "$(git status --porcelain)" ]; then exit 0 fi -git remote rm origin || true +git remote rm origin > /dev/null 2>&1 || true git remote add origin "${REPO}" git add . git commit --allow-empty -m 'Deploy to GitHub pages'