Avoid conflict with commit hashes

This commit is contained in:
SoniEx2 2019-04-20 11:44:18 -03:00
父節點 105164e661
當前提交 278c46a106
共有 1 個文件被更改,包括 1 次插入1 次删除

查看文件

@ -167,7 +167,7 @@ def remove(url):
def cron_target():
"""Runs ganarchy as a cron target"""
def handle_target(url, project_commit):
branchname = hashlib.sha256(url.encode("utf-8")).hexdigest()
branchname = "gan" + hashlib.sha256(url.encode("utf-8")).hexdigest()
try:
pre_hash = subprocess.check_output(["git", "-C", cache_home, "show", branchname, "-s", "--format=%H", "--"], stderr=subprocess.DEVNULL).decode("utf-8").strip()
except subprocess.CalledProcessError: