Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
norlandrhagen committed Sep 23, 2024
1 parent 1a36e27 commit a400354
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions feedstock/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,10 @@ def transfer(self, source_store) -> str:
os.environ["aws_secret_access_key"] = aws_secret

command = f"s5cmd --endpoint-url https://nyu1.osn.mghpcc.org {source_store} {self.target_store}"
logger.warn(command)
logger.info(command)

ls_out = subprocess.run(command, shell=True, capture_output=True, text=True)
logger.warn(ls_out)
logger.info(ls_out)
del client
return self.target_store

Expand Down

0 comments on commit a400354

Please sign in to comment.