fix: path to past test
This commit is contained in:
		
							parent
							
								
									9001c0db5c
								
							
						
					
					
						commit
						8af47a34a1
					
				|  | @ -52,10 +52,10 @@ def convert(root: Path = Path(".")) -> result.Config: | |||
|     Convert given dir of JOJ3 toml config files to JOJ3 json config files | ||||
|     """ | ||||
|     logger.info(f"Converting files in {root.absolute()}") | ||||
|     repo_toml_path = os.path.join(root.absolute(), "basic", "repo.toml") | ||||
|     repo_toml_path = os.path.join(root, "basic", "repo.toml") | ||||
|     # TODO: loop through all dirs to find all task.toml | ||||
|     task_toml_path = os.path.join(root.absolute(), "basic", "task.toml") | ||||
|     result_json_path = os.path.join(root.absolute(), "basic", "task.json") | ||||
|     task_toml_path = os.path.join(root, "basic", "task.toml") | ||||
|     result_json_path = os.path.join(root, "basic", "task.json") | ||||
|     with open(repo_toml_path) as repo_file: | ||||
|         repo_toml = repo_file.read() | ||||
|     with open(task_toml_path) as task_file: | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user