From: Oleg Broytman Date: Wed, 24 Jan 2024 11:51:16 +0000 (+0300) Subject: Feat(post-update): Set date after pulling X-Git-Url: https://git.phdru.name/?p=git-scripts.git;a=commitdiff_plain;h=e8f6d35f5d795e21c0ac13d5db759197e1d074bf Feat(post-update): Set date after pulling --- diff --git a/copy-scripts/post-update b/copy-scripts/post-update index 78fc50d..f2b565b 100755 --- a/copy-scripts/post-update +++ b/copy-scripts/post-update @@ -8,7 +8,8 @@ for ref in "$@"; do cd ../git-scripts && git checkout master && git pull origin master && - git push origin master + git push origin master && + ./set-commit-date.py exit fi done