commit 53e8269dab102260d43559be2327dbe7160cc473
parent 649ed7804af6e3c15b8f785a3ae8985b61739f01
Author: Nihal Jere <nihal@nihaljere.xyz>
Date: Thu, 25 Nov 2021 22:19:21 -0600
don't exit on git-commit failure
this can happen when there are updates in the worktree, but we don't
care about this
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/git-submodule-integrate b/git-submodule-integrate
@@ -35,7 +35,7 @@ do
git rm -q -r --cached "$where"
git read-tree --prefix="$where" "$treehash"
- git commit -C "$commit" || exit 1
+ git commit -C "$commit"
finished=$(( finished + 1 ))
printf "%s/%s finished\n" "$finished" "$total"