Avoid conflict with commit hashes

Этот коммит содержится в:
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: