summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKunal Mohan <kunalmohan99@gmail.com>2021-05-24 18:42:22 +0530
committerKunal Mohan <kunalmohan99@gmail.com>2021-05-24 18:44:48 +0530
commit6755b6a88defe30c63fa3bc6d25aa89e545180c9 (patch)
tree63aed55f0103607d4d65c71443d40049be105627
parent8235f48849be8f4cdaa5ff1fc844948b84ee4d02 (diff)
hotfix(build): Fix cargo make install
-rw-r--r--Makefile.toml4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.toml b/Makefile.toml
index e798c34f0..995a4e0df 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -39,10 +39,10 @@ run_task = "launch"
run_task = { name = "build", fork = true }
[tasks.build]
-args = ["build", "--", "@@split(CARGO_MAKE_TASK_ARGS,;)"]
+args = ["build"]
[tasks.build-release]
-args = ["build", "--release", "--", "@@split(CARGO_MAKE_TASK_ARGS,;)"]
+args = ["build", "--release"]
[tasks.build-dev-data-dir]
script_runner = "@duckscript"