From 6423f85614dc87a320625d2efe2088d648c127ff Mon Sep 17 00:00:00 2001
From: Jacky Zhao <j.zhao2k19@gmail.com>
Date: Fri, 04 Aug 2023 06:28:34 +0000
Subject: [PATCH] fix execsync
---
quartz/bootstrap-cli.mjs | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/quartz/bootstrap-cli.mjs b/quartz/bootstrap-cli.mjs
index dd10232..0bb078a 100755
--- a/quartz/bootstrap-cli.mjs
+++ b/quartz/bootstrap-cli.mjs
@@ -247,7 +247,9 @@
console.log(
"Pulling updates... you may need to resolve some `git` conflicts if you've made changes to components or plugins.",
)
- execSync(`git remote add upstream https://github.com/jackyzha0/quartz.git`, { stdio: "ignore" })
+ execSync(
+ `git remote show upstream || git remote add upstream https://github.com/jackyzha0/quartz.git`,
+ )
gitPull(UPSTREAM_NAME, QUARTZ_SOURCE_BRANCH)
await popContentFolder(contentFolder)
console.log("Ensuring dependencies are up to date")
--
Gitblit v1.10.0