You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.
when using ib_manifest_util download_packages --manifest_path ./hardening_manifest.yaml the filename specified in hardening_manifesy.yaml isn't the name that is used to save the file. This comes from this odd logic:
fname = url.split("/")[-1].lstrip("_")
...
with open(download_path / fname, "wb") as f:
f.write(r.content)
Summary
when using
ib_manifest_util download_packages --manifest_path ./hardening_manifest.yaml
the filename specified inhardening_manifesy.yaml
isn't the name that is used to save the file. This comes from this odd logic:https://github.com/MetroStar/ib_manifest_util/blob/dev/ib_manifest_util/download_conda_packages.py#L67
Proposed implementation
Fix this by making the fname come from the manifest name such as:
Where the expected downloaded file will be
code_server.tar.gz
and not5596bc9c2fbd566180545fa242c659663755a427.tar.gz
The text was updated successfully, but these errors were encountered: