Update update-repo.sh

This commit is contained in:
Yu Steven
2022-07-02 21:24:54 +08:00
committed by GitHub
parent 7c83ba0f03
commit 7db78e08ca

View File

@@ -4,5 +4,5 @@ status_log=$(git status -sb)
if [ "$status_log" == "## main...origin/main" ];then
echo -e "\033[42;30m nothing to commit, working tree clean \033[0m"
else
git pull origin path && git add . && git commit -m "$(date '+%Y.%m.%d %H:%M:%S') 更新订阅" && git push origin path
git pull origin main && git add . && git commit -m "$(date '+%Y.%m.%d %H:%M:%S') 更新订阅" && git push origin main
fi