From aa45241a8c829ea26fb40f4d92546186fa14d1ed Mon Sep 17 00:00:00 2001 From: LuK1337 Date: Mon, 30 Oct 2023 09:47:47 +0100 Subject: [PATCH] Fix date format string --- git/forcepush.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/forcepush.sh b/git/forcepush.sh index 884a2dc..45d6360 100644 --- a/git/forcepush.sh +++ b/git/forcepush.sh @@ -7,7 +7,7 @@ git clone https://github.com/${REPO} ${REPO} cd ${REPO} git remote add gerrit ssh://c3po@review.lineageos.org:29418/${REPO} if git checkout ${DEST_BRANCH}; then - git push gerrit HEAD:refs/backups/heads/$(date +%Y%m%d-%H%m)/${DEST_BRANCH} + git push gerrit HEAD:refs/backups/heads/$(date +%Y%m%d-%H%M)/${DEST_BRANCH} fi git remote add new ${SRC_REPO} git fetch new ${SRC_BRANCH}