From 7f5fc6166109cb232a2bea43dc2b8f58403f934e Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Tue, 25 Mar 2025 09:22:12 -0700 Subject: [PATCH] change installed version detection --- direnvrc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/direnvrc b/direnvrc index a87d389..f20a6bf 100644 --- a/direnvrc +++ b/direnvrc @@ -44,7 +44,10 @@ use_zig() { local version="$1" # This is a bad idea, because it will make a global change # zvm use $1 - if [[ "$(zvm ls | grep "$version")" != "$version" ]]; then + # + # Check for existence of the version installed in the state directory + if [ ! -d "${state_dir}/$version" ]; then + log_status "zig/zls version $version not installed - downloading with zvm" local current # zvm 0.7.9 does not indicate which version is in use, so we have to find # the version that was hard linked into the bin directory