From 4ba226db22821029bcca8c7281422e5ffbde4541 Mon Sep 17 00:00:00 2001 From: "F.C. Martin" Date: Fri, 15 Mar 2024 15:06:34 +0100 Subject: [PATCH] Updated conda check in the livecycle script --- node.sh | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/node.sh b/node.sh index 33423f0..f594cac 100644 --- a/node.sh +++ b/node.sh @@ -11,17 +11,17 @@ fi print_header "$COMMAND the vantage6-node" -print_step "Checking if conda is installed" -if ! check_command "conda"; then - print_error "Did you run the installation script? Exiting..." - exit 1 -fi +# print_step "Checking if conda is installed" +# if ! check_command "conda"; then +# print_error "Did you run the installation script? Exiting..." +# exit 1 +# fi -print_step "Checking if the vantage6 environment exists" -if ! check_env "vantage6"; then - print_error "Did you run the installation script? Exiting..." - exit 1 -fi +# print_step "Checking if the vantage6 environment exists" +# if ! check_env "vantage6"; then +# print_error "Did you run the installation script? Exiting..." +# exit 1 +# fi print_step "Activating the vantage6 environment" source $HOME/miniconda/bin/activate vantage6