Skip to content

Commit 06d26f3

Browse files
committed
Revert "tmp commit ot check ci tests"
This reverts commit c98e896.
1 parent c98e896 commit 06d26f3

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

vtr_flow/scripts/run_vtr_flow.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def vtr_command_argparser(prog=None):
187187

188188
house_keeping.add_argument(
189189
"-temp_dir",
190-
default=None,
190+
default=os.getcwd() + "/temp",
191191
help="Absolute Directory to run the flow in (will be created if non-existent).",
192192
)
193193

@@ -523,10 +523,8 @@ def vtr_command_main(arg_list, prog=None):
523523
args, unknown_args = vtr_command_argparser(prog).parse_known_args(arg_list)
524524
error_status = "Error"
525525

526-
if args.temp_dir is None:
527-
temp_dir = Path("./temp")
528-
else:
529-
temp_dir = Path(args.temp_dir)
526+
assert args.temp_dir
527+
temp_dir = Path(args.temp_dir)
530528
# Specify how command should be run
531529
command_runner = vtr.CommandRunner(
532530
track_memory=args.track_memory_usage,

0 commit comments

Comments
 (0)