Skip to content

Commit

Permalink
use trailing slash on remote results dir
Browse files Browse the repository at this point in the history
  • Loading branch information
hhuuggoo committed Apr 8, 2024
1 parent 0345df2 commit 4695985
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion saturn_client/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ def dispatch_thread(cmd: str, remote_output_path: str, local_results_dir: str) -
output_path = remote_output_path
os.makedirs(local_results_dir, exist_ok=True)
fs = fsspec.generic.GenericFileSystem()
remote_results_dir = join(output_path, "results")
remote_results_dir = join(output_path, "results/")
if not fs.exists(remote_results_dir):
fs.makedirs(remote_results_dir)
remote_status_code_path = join(output_path, "status_code")
Expand Down

0 comments on commit 4695985

Please sign in to comment.