aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-06 12:56:59 -0700
committerFuwn <[email protected]>2021-05-06 12:56:59 -0700
commit616898ce7f5908384becf2f927315e930935355a (patch)
tree839fc6d1cde9e9d3c7d780e0d3894607ee34a66a
parentfeat(docker): extends alpine (diff)
downloadwhirl-616898ce7f5908384becf2f927315e930935355a.tar.xz
whirl-616898ce7f5908384becf2f927315e930935355a.zip
refactor(make): use cargo-make task naming conventions
-rw-r--r--Makefile.toml12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.toml b/Makefile.toml
index ecb679e..2e7c81f 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -47,12 +47,12 @@ command = "cargo"
args = ["run", "--", "run"]
# This task also depends on your system configuration, same goes as read above.
-[tasks.start_client]
+[tasks.start-client]
command = "gsudo"
args = ["${WORLDS_PATH}"]
[tasks.runc]
-dependencies = ["start_client", "run"]
+dependencies = ["start-client", "run"]
[tasks.runw]
env = { "DISABLE_PROMPT" = true }
@@ -61,15 +61,15 @@ command = "cargo"
args = ["run", "--", "run"]
watch = true
-[tasks.docker_build]
+[tasks.docker-build]
command = "nix-build"
args = ["docker.nix"]
-[tasks.docker_load]
+[tasks.docker-load]
command = "docker"
args = ["load", "<", "result"]
-[tasks.docker_run]
+[tasks.docker-run]
command = "docker"
args = [
"run",
@@ -81,5 +81,5 @@ args = [
# Build 'n' load
[tasks.bnl]
-dependencies = ["docker_build", "docker_load"]
+dependencies = ["docker-build", "docker-load"]