Compare commits

..

2 Commits

Author SHA1 Message Date
02778d3ca1
finalize installation instructions in readme 2024-10-31 14:13:22 -07:00
bc65d9d656
fix zvm check 2024-10-31 14:10:32 -07:00
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ Put the following lines in your `.envrc`:
```sh
if ! has zvm_direnv_version || ! zvm_direnv_version 1.0.0; then
source_url "https://git.lerch.org/lobo/zvm-direnv/1.0.0/direnvrc" #"sha256-RuwIS+QKFj/T9M2TFXScjBsLR6V3A17YVoEW/Q6AZ1w="
source_url "https://git.lerch.org/lobo/zvm-direnv/raw/tag/1.0.0/direnvrc" "sha256-Gtddvcr6aJsrjKd53uChxA1reQmJgEBpmPUWmMdtDIQ="
fi
```

View File

@ -29,7 +29,7 @@ use_zig() {
return 1
fi
if ! command -v "$1" > /dev/null 2>&1; then
if ! command -v zvm > /dev/null 2>&1; then
log_error "zvm not installed - please install it from https://www.zvm.app/"
return 1
fi