summaryrefslogtreecommitdiff
path: root/lib-src/mr
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-12-02 11:07:49 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-12-02 11:07:49 -0700
commitd5025df2eefc87624aedab0df93d4cdd1175af9e (patch)
treebdada7a1135942633272b3def765894d396b759d /lib-src/mr
parent8070d062f6faf7c5cd7b5b01f952377a35ae38c7 (diff)
downloaddotfiles-d5025df2eefc87624aedab0df93d4cdd1175af9e.tar.gz
accept failures to fetch remotes in post_checkout
Diffstat (limited to 'lib-src/mr')
-rw-r--r--lib-src/mr/config14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib-src/mr/config b/lib-src/mr/config
index 35872ea8..480adfb1 100644
--- a/lib-src/mr/config
+++ b/lib-src/mr/config
@@ -226,7 +226,7 @@ checkout = git clone demeter:propellor propellor --branch spw3conf
post_checkout =
cd propellor
# get new release tags for merging into 'spw3conf' and 'debian' branches
- git remote add -f upstream https://git.joeyh.name/git/propellor.git
+ git remote add -f upstream https://git.joeyh.name/git/propellor.git ||:
# This hook sets up .dir-locals.el to make it easier to follow
# Propellor's coding style. We have to use a hook because
# .dir-locals.el and the cabal sandbox must be nuked when working
@@ -256,7 +256,7 @@ skip = ! mine
checkout = git clone salsa:dgit-team/dgit
post_checkout =
cd dgit
- git remote add -f demeter demeter:dgit
+ git remote add -f demeter demeter:dgit ||:
dgit setup-new-tree
install-git-hooks dgit
skip = lazy
@@ -272,7 +272,7 @@ skip = lazy
checkout = git clone demeter:grml-live -b spw/std
post_checkout =
cd grml-live
- git remote add -f upstream github:grml/grml-live
+ git remote add -f upstream github:grml/grml-live ||:
fixups = git config commit.gpgsign true
skip = lazy
@@ -290,7 +290,7 @@ checkout = git clone demeter:p5-Git-Annex p5-Git-Annex
post_checkout =
cd p5-Git-Annex
install-git-hooks p5-Git-Annex
- git remote add -f salsa salsa:perl-team/modules/packages/libgit-annex-perl
+ git remote add -f salsa salsa:perl-team/modules/packages/libgit-annex-perl ||:
git branch --track debian salsa/master
git config branch.debian.signOffOptional true
git config branch.buster-bpo.signOffOptional true
@@ -301,7 +301,7 @@ checkout = git clone demeter:p5-API-GitForge p5-API-GitForge
post_checkout =
cd p5-API-GitForge
install-git-hooks p5-API-GitForge
- git remote add -f salsa salsa:perl-team/modules/packages/libapi-gitforge-perl
+ git remote add -f salsa salsa:perl-team/modules/packages/libapi-gitforge-perl ||:
git branch --track debian salsa/master
git config branch.debian.signOffOptional true
skip = lazy
@@ -416,9 +416,9 @@ checkout = git clone https://git.savannah.gnu.org/git/emacs.git emacs
post_clean = ./autogen.sh autoconf
post_checkout =
cd emacs
- git remote add -f demeter demeter:emacs
+ git remote add -f demeter demeter:emacs ||:
git -c fetch.fsckObjects=false \
- remote add -f debian https://salsa.debian.org/rlb/deb-emacs.git/
+ remote add -f debian https://salsa.debian.org/rlb/deb-emacs.git/ ||:
# We might want a branch for localhost on non-workstations, but we only
# automatically create one on workstations.
if workstation; then