aboutsummaryrefslogtreecommitdiff
path: root/sup
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-07-28 21:59:52 -0300
committerSilvio Rhatto <rhatto@riseup.net>2024-07-28 21:59:52 -0300
commit382065a2ce25101eabaaae34c37b07010e210248 (patch)
tree399620d744a19b77e2d18a933d7d3b47705b7306 /sup
parent3106b52eeb9cb8ded2497bf6611355b1f1bf4c87 (diff)
downloadutils-git-382065a2ce25101eabaaae34c37b07010e210248.tar.gz
utils-git-382065a2ce25101eabaaae34c37b07010e210248.tar.bz2
Fix: sup: use git add -f
Diffstat (limited to 'sup')
-rwxr-xr-xsup3
1 files changed, 2 insertions, 1 deletions
diff --git a/sup b/sup
index b06f16f..3564418 100755
--- a/sup
+++ b/sup
@@ -79,5 +79,6 @@ else
MESSAGE="Updates $BASE: $LOG"
# Got upward and commit
- ( cd .. &> /dev/null && $GIT add $BASE && $DIRNAME/commit "$MESSAGE" )
+ #( cd .. &> /dev/null && $GIT add $BASE && $DIRNAME/commit "$MESSAGE" )
+ ( cd .. &> /dev/null && $GIT add -f $BASE && $DIRNAME/commit "$MESSAGE" )
fi