Skip to content

Commit

Permalink
fix micromamba download extraction command (#1539)
Browse files Browse the repository at this point in the history
  • Loading branch information
saikonen authored and savingoyal committed Oct 3, 2023
1 parent 1e0a219 commit 1eadcd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion metaflow/plugins/pypi/micromamba.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def _install_micromamba(installation_location):
subprocess.Popen(f"mkdir -p {installation_location}", shell=True).wait()
# https://mamba.readthedocs.io/en/latest/micromamba-installation.html#manual-installation
result = subprocess.Popen(
f"curl -Ls https://micro.mamba.pm/api/micromamba/{platform}/latest | tar -xv -C {installation_location} bin/micromamba",
f"curl -Ls https://micro.mamba.pm/api/micromamba/{platform}/latest | tar -xvj -C {installation_location} bin/micromamba",
shell=True,
stderr=subprocess.PIPE,
)
Expand Down

0 comments on commit 1eadcd1

Please sign in to comment.