diff --git a/vtr_flow/scripts/run_vtr_flow.py b/vtr_flow/scripts/run_vtr_flow.py index e288f2b5099..bea79f4394e 100755 --- a/vtr_flow/scripts/run_vtr_flow.py +++ b/vtr_flow/scripts/run_vtr_flow.py @@ -525,6 +525,8 @@ def vtr_command_main(arg_list, prog=None): assert args.temp_dir temp_dir = Path(args.temp_dir) + # Create an absolute path is it is not already provided. + # Parmys throws an error if an absolute path is not provided. if not str(temp_dir).startswith("/"): temp_dir = Path(os.getcwd() + "/" + args.temp_dir) # Specify how command should be run