From 41716b3a56216355b42c07cf3d24f91b4f5d8d90 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Tue, 8 Mar 2022 15:39:17 -0500 Subject: [PATCH] push.sh: don't fail when commit doesn't change anything --- push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/push.sh b/push.sh index 2d8df42..954eaf2 100755 --- a/push.sh +++ b/push.sh @@ -9,5 +9,5 @@ rsync -av --delete --info=progress2 --exclude=".git" tmp/ ../titaniumtown.github rm -fr tmp cd ../titaniumtown.github.io git add . -git commit -m "update" +git commit -m "update" | true git push \ No newline at end of file