Skip to content

Commit

Permalink
Fix result writing (#261)
Browse files Browse the repository at this point in the history
* Fix result writing

* Move changes to argparser

Co-authored-by: Chris Jarrett <[email protected]>
  • Loading branch information
ChrisJar and Chris Jarrett authored Jul 7, 2022
1 parent 73116e7 commit 20c568a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpu_bdb/bdb_tools/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ def gpubdb_argparser():
# if yaml configuration missing
KEYS_TO_ENV_VAR_MAPPING = {
"data_dir": os.environ.get("DATA_DIRECTORY"),
"output_dir": os.environ.get("OUTPUT_DIRECTORY"),
"output_dir": os.environ.get("OUTPUT_DIRECTORY", "./"),
"sheet": os.environ.get("GOOGLE_SPREADSHEET_NAME"),
"tab": os.environ.get("GOOGLE_SPREADSHEET_TAB"),
"scheduler_file_path": os.environ.get("SCHEDULER_FILE"),
Expand Down

0 comments on commit 20c568a

Please sign in to comment.