change installed version detection
This commit is contained in:
parent
672823459d
commit
7f5fc61661
1 changed files with 4 additions and 1 deletions
5
direnvrc
5
direnvrc
|
@ -44,7 +44,10 @@ use_zig() {
|
||||||
local version="$1"
|
local version="$1"
|
||||||
# This is a bad idea, because it will make a global change
|
# This is a bad idea, because it will make a global change
|
||||||
# zvm use $1
|
# 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
|
local current
|
||||||
# zvm 0.7.9 does not indicate which version is in use, so we have to find
|
# 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
|
# the version that was hard linked into the bin directory
|
||||||
|
|
Loading…
Add table
Reference in a new issue