From 1a2f37b0eca0d5728e424c4b3863960af3d8b704 Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Sun, 23 Oct 2022 10:38:01 +0530 Subject: [PATCH] Make the micromamba binary executable after download on linux --- scripts/bootstrap.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index da39f4c5..8b556aa4 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -46,6 +46,8 @@ if [ "$PACKAGES_TO_INSTALL" != "" ]; then mkdir -p "$MAMBA_ROOT_PREFIX" curl -L "$MICROMAMBA_DOWNLOAD_URL" | tar -xvj "$MAMBA_ROOT_PREFIX/micromamba" + chmod u+x "$MAMBA_ROOT_PREFIX/micromamba" + # test the mamba binary echo "Micromamba version:" "$MAMBA_ROOT_PREFIX/micromamba" --version