This commit is contained in:
Andrei Yankovich 2020-02-05 15:05:17 +03:00
parent 76b86a8e18
commit cf9571dfad

View File

@ -39,7 +39,9 @@ class Make(BaseModule):
now = datetime.datetime.now().strftime("(%H_%M_%S)_%m-%d-%Y")
m = hashlib.md5()
m.update(repo[repo.rfind('/'): len(repo) - 4] + "/" + now)
repoPath = self.getNameProjectFromGitUrl(repo) + "/" + now
m.update(repoPath.encode('utf-8'))
return m.hexdigest()