We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4e9bde5 commit ed8b72bCopy full SHA for ed8b72b
Justfile
@@ -1,3 +1,5 @@
1
+set unstable
2
+
3
env_vars := if os() == "linux" {
4
"LZMA_API_STATIC=1 LIBTORCH=/usr/local"
5
} else if os() == "macos" {
@@ -10,7 +12,7 @@ env_vars := if os() == "linux" {
10
12
11
13
build target="":
14
@echo "Building for target: {{target}}"
- {{env_vars}} cargo build -p divvun-runtime-cli --release {{ if target != "" { "--target" {{target}}" } else { "" } }}
15
+ {{env_vars}} cargo build -p divvun-runtime-cli --release {{ if target != "" { "--target" + target } else { "" } }}
16
17
# Install built binary
18
install target="": (build target)
0 commit comments