mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
Fix micromamba tar command for macOS
Moved the -O from after the file to after the tar command for compatibility with macOS Signed-off-by: Kevin Coakley <kcoakley@sdsc.edu>
This commit is contained in:
parent
18ae3949ef
commit
1f0220697b
@ -91,7 +91,7 @@ if [ "$PACKAGES_TO_INSTALL" != "" ]; then
|
||||
# download micromamba
|
||||
echo -e "\n***** Downloading micromamba from $MICROMAMBA_DOWNLOAD_URL to micromamba *****\n"
|
||||
|
||||
curl -L "$MICROMAMBA_DOWNLOAD_URL" | tar -xvj bin/micromamba -O > micromamba
|
||||
curl -L "$MICROMAMBA_DOWNLOAD_URL" | tar -xvjO bin/micromamba > micromamba
|
||||
|
||||
chmod u+x "micromamba"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user