Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mpeura committed Sep 27, 2024
1 parent 4a0ddb2 commit 4514e73
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/configure-venv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,11 @@ if [ $# == 0 ]; then
exit 0;
fi

conda init
#conda activate "$VENV"
source $(conda info --base)/etc/profile.d/conda.sh
# conda init
# conda activate "$VENV"
conda activate "$VENV"
if [ $? == "xx0" ]; then
if [ $? != 0 ]; then
echo "Looks like VENV=$VENV does not exist"
read -e -i "yes" -p " Create one? " CREATE
#echo X=$CREATE
Expand Down Expand Up @@ -89,4 +90,8 @@ for i in $*; do
done


echo "Next, continue with: "
echo "VENV_DIR=$VENV_DIR ./configure.sh"



0 comments on commit 4514e73

Please sign in to comment.