Skip to content

Commit

Permalink
fix existing auxiliary folder case
Browse files Browse the repository at this point in the history
  • Loading branch information
aperrin66 committed Jan 20, 2025
1 parent 9244cb9 commit 5576ade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion geospaas_processing/converters/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def download_auxiliary_files(cls, force_download=False):
logger.info(
"Downloading auxiliary files for conversions, this may take a while. "
"Download path: %s", str(cls.auxiliary_path))
os.makedirs(cls.auxiliary_path)
os.makedirs(cls.auxiliary_path, exist_ok=True)
try:
# download archive
with utils.http_request('GET', url, stream=True) as response, \
Expand Down

0 comments on commit 5576ade

Please sign in to comment.