From 31fcd43dcc492b87500c7b7b69cfc718210e1c57 Mon Sep 17 00:00:00 2001 From: George Lambert Date: Fri, 11 Sep 2026 12:40:06 -0400 Subject: [PATCH] Re-import module repos with --force for snapshot updates --- scripts/push-module-repos.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/push-module-repos.sh b/scripts/push-module-repos.sh index 1381120..42b2317 100755 --- a/scripts/push-module-repos.sh +++ b/scripts/push-module-repos.sh @@ -29,8 +29,8 @@ push_dir() { git -C "$tmp" -c user.email=marchon@gmail.com -c user.name="George Lambert" \ commit -q -m "Initial import of $name from zapier monorepo" git -C "$tmp" remote add origin "$GITSSH/${name}.git" - git -C "$tmp" push -u origin main - git -C "$tmp" push origin main:master || true + git -C "$tmp" push -u --force origin main + git -C "$tmp" push --force origin main:master || true rm -rf "$tmp" echo "pushed $name" }