Skip to content

Commit

Permalink
bugfix(init sample datasets): fix error of copying sample dataset files
Browse files Browse the repository at this point in the history
  • Loading branch information
imhuwq committed Dec 13, 2023
1 parent 4f28555 commit f2445fb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions deepdataspace/services/dds.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ def _init_shared_files_and_dirs(self):
if self.quickstart is True:
if self.data_dir is None:
self.data_dir = os.path.join(config.RUNTIME_DIR, "datasets")
os.makedirs(self.data_dir, exist_ok=True)
self.init_samples()
config.DATA_DIR = self.data_dir

Expand Down

0 comments on commit f2445fb

Please sign in to comment.