From 80a310a045d3110b09c8ab90f8f82e097fa8fe75 Mon Sep 17 00:00:00 2001 From: Justin Moore Date: Mon, 4 Dec 2023 10:26:28 -0600 Subject: [PATCH] Fix `cargo make` not working on a fresh checkout (#509) --- Makefile.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.toml b/Makefile.toml index 1bdafba04..5a1b19d4c 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -45,7 +45,7 @@ dependencies = [ [tasks.build] command = "cargo" -args = ["build", "-p", "spyglass-client", "-p", "spyglass-app", "--profile", "${CARGO_MAKE_CARGO_PROFILE}"] +args = ["tauri", "build", "--config", "${TAURI_DEV_CONFIG}"] dependencies = [ "build-backend", "copy-backend-binaries", @@ -59,6 +59,7 @@ dependencies = [ [tasks.build-backend] args = ["build", "-p", "spyglass", "--profile", "${CARGO_MAKE_CARGO_PROFILE}"] command = "cargo" +private = true [tasks.copy-backend-binaries] dependencies = ["create-binary-directory", "set-platform-specific-variables"]