From 001bea8406919bec49b786350e9594f7cece9e70 Mon Sep 17 00:00:00 2001 From: yage Date: Wed, 12 Jan 2022 12:47:46 -0700 Subject: [PATCH] [bugfix] more configuration renaming errors --- activator.plugin.zsh | 2 +- config.zsh | 6 +++--- zsh/env-setup.zsh | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/activator.plugin.zsh b/activator.plugin.zsh index cd7d27f..5eb09f2 100644 --- a/activator.plugin.zsh +++ b/activator.plugin.zsh @@ -5,7 +5,7 @@ # # ################################################################### -_CA__VERSION=1.0.1 +_CA__VERSION=1.0.2 _CA__DEPENDENCIES=(code-activator fzf jq git) ##################################################################### diff --git a/config.zsh b/config.zsh index 983b10d..b5985ff 100644 --- a/config.zsh +++ b/config.zsh @@ -60,8 +60,8 @@ source $_CA__LOCAL_CONFIG export \ CA__DIRS \ CA__KNOWN_TARGETS \ - CA__SOURCE_DIR_NAME \ - CA__VIRTUAL_ENV_NAME \ - CA__CUSTOM_ENV_NAME \ + CA__SOURCE_DIR \ + CA__VIRTUAL_ENV \ + CA__CUSTOM_ENV \ CA__NO_ENV \ ; diff --git a/zsh/env-setup.zsh b/zsh/env-setup.zsh index 6918ebe..d8b0bd1 100644 --- a/zsh/env-setup.zsh +++ b/zsh/env-setup.zsh @@ -1,6 +1,6 @@ _CA__INTERACTIVE_ENV_SETUP() { local PROJECT_PATH="$1" - local NO_ENV="$PROJECT_PATH/$_CA__NO_ENV_SENTINEL" + local NO_ENV="$PROJECT_PATH/$CA__NO_ENV" printf 'set up a virtual environment now? [(Y)es / (n)o / n(e)ver] ' _CA_READ yn