Skip to content
Snippets Groups Projects
Commit 68fb0706 authored by s2870355's avatar s2870355
Browse files

fix unterminated string

parent be2a2792
No related branches found
No related tags found
No related merge requests found
Pipeline #70196 passed
......@@ -144,11 +144,11 @@ def job_to_string(job : list[dict]):
if artifacts == "untracked":
output = output + '\t' + 'artifacts:\n\t\tuntracked: true\n'
else:
output = output + '\t' + 'artifacts:\n\t\tpaths:\n
output = output + '\t' + 'artifacts:\n\t\tpaths:\n'
for artifact in artifacts:
output = output + "\t\t\t- \"" + artifact + '\"\n'
if cache is not None:
output = output + '\t' + 'cache:\n\t\tpaths:\n
output = output + '\t' + 'cache:\n\t\tpaths:\n'
for c in cache:
output = output + "\t\t\t- \"" + c + '\"\n'
return output
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment