diff options
| author | Fuwn <[email protected]> | 2021-05-06 12:56:59 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-06 12:56:59 +0000 |
| commit | f0a28c896438c62803a2558f9795bbc3b274816f (patch) | |
| tree | c875deaefb4dcd818b0683b6d19c7d7644fd8f8b | |
| parent | feat(docker): extends alpine (diff) | |
| download | whirl-f0a28c896438c62803a2558f9795bbc3b274816f.tar.xz whirl-f0a28c896438c62803a2558f9795bbc3b274816f.zip | |
refactor(make): use cargo-make task naming conventions
| -rw-r--r-- | Makefile.toml | 12 |
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"] |