We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20195de commit 24dfcd8Copy full SHA for 24dfcd8
1 file changed
Justfile
@@ -43,7 +43,7 @@ build target=default-target:
43
guests: build-and-move-rust-guests build-and-move-c-guests
44
45
ensure-cargo-hyperlight:
46
- cargo install --locked --force --git https://github.com/hyperlight-dev/cargo-hyperlight --branch picolibc cargo-hyperlight
+ {{ if os() == "windows" { "if (-not (Get-Command cargo-hyperlight -ErrorAction SilentlyContinue)) { cargo install --locked cargo-hyperlight }" } else { "command -v cargo-hyperlight >/dev/null 2>&1 || cargo install --locked cargo-hyperlight" } }}
47
48
witguest-wit:
49
{{ if os() == "windows" { "if (-not (Get-Command wasm-tools -ErrorAction SilentlyContinue)) { cargo install --locked wasm-tools }" } else { "command -v wasm-tools >/dev/null 2>&1 || cargo install --locked wasm-tools" } }}
0 commit comments