This commit is contained in:
2025-05-09 16:56:29 +07:00
parent 58abdaaf74
commit e417a013fa
+2 -2
View File
@@ -4,10 +4,10 @@ RELEASE_UID = 8845
PYTHON = $(REGISTRY_PATH)/venv/bin/python
update_registry: package_registry upload_registry clean_registry
( cd $(REGISTRY_PATH) && \
@read -p "Enter your commit message: " commit_msg; \
@read -p "Enter your commit message: " commit_registry_msg; \
git pull https://$(GIT_USER):$(GIT_PASS)@$(REGISTRY_REPO) || true; \
git add . && \
git commit -m "$${commit_msg:-update}" || true; \
git commit -m "$${commit_registry_msg:-update}" || true; \
git push https://$(GIT_USER):$(GIT_PASS)@$(REGISTRY_REPO) || true )
package_registry: