From 90c8aa716d97afd35745f5606a99401e7a68d6e3 Mon Sep 17 00:00:00 2001 From: cmdr2 Date: Thu, 13 Oct 2022 10:24:44 +0530 Subject: [PATCH] Typo in bash path --- installer/install.sh | 2 +- invoke.sh | 2 +- update.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/installer/install.sh b/installer/install.sh index b80c9aed9f..7e3714434c 100755 --- a/installer/install.sh +++ b/installer/install.sh @@ -56,7 +56,7 @@ if [ "$PACKAGES_TO_INSTALL" != "" ]; then "$MAMBA_ROOT_PREFIX/micromamba" install -y --prefix "$INSTALL_ENV_DIR" -c conda-forge $PACKAGES_TO_INSTALL fi -if [ -e "$INSTALL_ENV_DIR" ]; then export PATH="$PATH;$INSTALL_ENV_DIR/bin"; fi +if [ -e "$INSTALL_ENV_DIR" ]; then export PATH="$PATH:$INSTALL_ENV_DIR/bin"; fi # get the repo (and load into the current directory) if [ ! -e ".git" ]; then diff --git a/invoke.sh b/invoke.sh index 676fc77eee..45de0223b6 100755 --- a/invoke.sh +++ b/invoke.sh @@ -2,7 +2,7 @@ if [ "$0" == "bash" ]; then INSTALL_ENV_DIR="$(pwd)/installer_files/env" - if [ -e "$INSTALL_ENV_DIR" ]; then export PATH="$PATH;$INSTALL_ENV_DIR/bin"; fi + if [ -e "$INSTALL_ENV_DIR" ]; then export PATH="$PATH:$INSTALL_ENV_DIR/bin"; fi CONDA_BASEPATH=$(conda info --base) source "$CONDA_BASEPATH/etc/profile.d/conda.sh" # otherwise conda complains about 'shell not initialized' (needed when running in a script) diff --git a/update.sh b/update.sh index 3e82f419ff..a3e30348aa 100755 --- a/update.sh +++ b/update.sh @@ -1,7 +1,7 @@ #!/bin/bash INSTALL_ENV_DIR="$(pwd)/installer_files/env" -if [ -e "$INSTALL_ENV_DIR" ]; then export PATH="$PATH;$INSTALL_ENV_DIR/bin"; fi +if [ -e "$INSTALL_ENV_DIR" ]; then export PATH="$PATH:$INSTALL_ENV_DIR/bin"; fi # update the repo if [ -e ".git" ]; then