Skip to content
Snippets Groups Projects
Commit 0dde2da5 authored by s2870355's avatar s2870355
Browse files

made jobs have /

parent 036a89c4
No related branches found
No related tags found
No related merge requests found
Checking pipeline status
......@@ -5,7 +5,7 @@ import ast
class job_data:
def __init__(self, location : str, image : str, depends : list[str], stage : str, artifact : list[str], cache : list[str]) -> None:
self.location: str = os.path.relpath(location,os.getcwd()).replace("\\", os.sep).replace("/", os.sep)
self.location: str = os.path.relpath(location,os.getcwd()).replace("\\", '/')
self.image: str = image
self.depends: list[str] = depends
self.stage: str = stage
......
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