Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion src/batch_processing/cmd/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,10 @@ def __init__(self, basedir: str = None):
basedir = get_basedir_from_config()
self.dvmdostem_path = Path(basedir) / DVMDOSTEM_FOLDER
self.dvmdostem_bin_path = f"{self.dvmdostem_path}/dvmdostem"
self.dvmdostem_scripts_path = f"{self.dvmdostem_path}/scripts/"

# For versions of dvmdostem >= v0.8.3-85-g465d6165
# Previous versions had the scripts folder in a different location.
self.dvmdostem_scripts_path = f"{self.dvmdostem_path}/pyddt/src/pyddt/"

# You might notice that the only variable which has a trailing
# slash is in the below one. config.js file has it this way.
Expand Down