commit 8749f0fe820bf6237c9aa2d9342e79eafe8c25fc
parent 9425e89ca7bfdcdccd9f6f6d20ca81579d9912b2
Author: Chris Bracken <chris@bracken.jp>
Date: Thu, 12 Nov 2020 14:35:29 -0800
Update repository for published site
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/publish.sh b/publish.sh
@@ -1,6 +1,6 @@
#!/bin/sh
-PUBLISH_REPO=git@github.com:cbracken/cbracken.github.io.git
+PUBLISH_REPO=git@github.com:cbracken/chris.bracken.jp.git
# Returns whether the git repo at path $1 has any uncommitted diffs.
has_diffs() {
@@ -43,7 +43,7 @@ else
if prompt_yn "Commit and publish? "; then
git -C public add .
git -C public commit -S -m "Publish site"
- git -C public push origin master
+ git -C public push origin main
fi
fi