summaryrefslogtreecommitdiff
path: root/conda.sh
diff options
context:
space:
mode:
authorRobert Reed <robert.mc.reed@gmail.com>2021-08-25 20:14:59 -0700
committerRobert Reed <robert.mc.reed@gmail.com>2021-08-25 20:14:59 -0700
commitc66bc8f10dc1d7aa7a1d2dd64bf8feb1f17925b0 (patch)
treed1373fec9fe4d8ef8e07bcc3871a2f04c36ec271 /conda.sh
parent8d8f9c45f719781a6721a8d97fcee2ae5091f4a0 (diff)
chore: uninstall success msg
Diffstat (limited to 'conda.sh')
-rwxr-xr-xconda.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/conda.sh b/conda.sh
index 8985067..33dd36d 100755
--- a/conda.sh
+++ b/conda.sh
@@ -33,6 +33,8 @@ if [ "$1" = "--uninstall" ]; then
confirmContinue "Would you like to remove the conda environment $envName?"
conda deactivate
conda env remove -n $envName
+ inform "Conda environment removed!\n\n\tRun \"conda deactivate\" to ensure the environment has been properly deactivated."
+
exit
fi