Revert some mistakenly replaced '/' symbols earlier

This commit is contained in:
Ilya Fedin 2022-12-19 15:50:25 +04:00 committed by John Preston
parent 5cbdc2f739
commit 2bbe511a6f
1 changed files with 1 additions and 1 deletions

View File

@ -338,7 +338,7 @@ def runStages():
continue
index = index + 1
version = ('#' + str(stage['version'])) if (stage['version'] != '0') else ''
prefix = '[' + os.path.join(str(index), str(count)) + '](' + os.path.join(stage['location'], stage['name']) + version + ')'
prefix = '[' + str(index) + '/' + str(count) + '](' + stage['location'] + '/' + stage['name'] + version + ')'
print(prefix + ': ', end = '', flush=True)
stage['key'] = computeCacheKey(stage)
commands = removeDir(stage['name']) + '\n' + stage['commands']