diff --git a/Makefile b/Makefile index b0c194e..1215405 100644 --- a/Makefile +++ b/Makefile @@ -133,13 +133,13 @@ generate_csi_protos: setup_conda_env: ## Checks for CONDA Environment @echo "\n START SETTING UP CONDA ENV \n" - @conda env list | grep -q ondewo-nlu-client-python \ + @conda env list | grep -q ondewo-csi-client-python \ && make release || ( echo "\n CONDA ENV FOR REPO DOESNT EXIST \n" \ && make create_conda_env) create_conda_env: ##Creates CONDA Environment - conda create -y --name ondewo-nlu-client-python python=3.8 - /bin/bash -c 'source `conda info --base`/bin/activate ondewo-nlu-client-python; make setup_developer_environment_locally && echo "\n PRECOMMIT INSTALLED \n"' + conda create -y --name ondewo-csi-client-python python=3.8 + /bin/bash -c 'source `conda info --base`/bin/activate ondewo-csi-client-python; make setup_developer_environment_locally && echo "\n PRECOMMIT INSTALLED \n"' make release ######################################################## @@ -260,7 +260,7 @@ clone_devops_accounts: ## Clones devops-accounts repo run_release_with_devops: $(eval info:= $(shell cat ${DEVOPS_ACCOUNT_DIR}/account_github.env | grep GITHUB_GH & cat ${DEVOPS_ACCOUNT_DIR}/account_pypi.env | grep PYPI_USERNAME & cat ${DEVOPS_ACCOUNT_DIR}/account_pypi.env | grep PYPI_PASSWORD)) - @echo ${CONDA_PREFIX} | grep -q nlu-client-python && make release $(info) || (make setup_conda_env $(info)) + @echo ${CONDA_PREFIX} | grep -q csi-client-python && make release $(info) || (make setup_conda_env $(info)) spc: ## Checks if the Release Branch, Tag and Pypi version already exist $(eval filtered_branches:= $(shell git branch --all | grep "release/${ONDEWO_CSI_VERSION}"))