1
0
Fork 0

Avoid conflict with commit hashes

Dieser Commit ist enthalten in:
SoniEx2 2019-04-20 11:44:18 -03:00
Ursprung 105164e661
Commit 278c46a106
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen

Datei anzeigen

@ -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: