Commit b9b4884
Changed files (1)
justfile
@@ -1,4 +1,5 @@
-system := "x86_64-linux"
+os := if os() == "macos" { "darwin" } else if os() == "linux" { "linux" } else { error("Unsupported OS") }
+system := arch() + "-" + os
# Build current system profile
build-boot: