Skip to content

Commit

Permalink
increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
jerowe committed Jan 25, 2023
1 parent 2c1c9e5 commit 6644eaa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_rstudio_singularity/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ def sanity_check_singularity_image(remote_image: str, image: str):
image_dir = os.path.dirname(image)
if not os.path.exists(image):
logger.info("Local image doesn't exist. Pulling...")
os.makedirs(image_dir)
os.makedirs(image_dir, exist_ok=True)
return shell_run_command(
command=f"cd {image_dir} && singularity pull {remote_image}",
return_all=True,
Expand Down

0 comments on commit 6644eaa

Please sign in to comment.