diff options
| -rw-r--r-- | Makefile.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml index 94cddc5..0c24449 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -42,24 +42,29 @@ dependencies = ["fmt", "check"] dependencies = ["fmt", "check", "clippy"] [tasks.help] +workspace = false dependencies = ["checkf"] command = "cargo" args = ["run", "--", "help"] [tasks.run] +workspace = false dependencies = ["checkf"] command = "cargo" args = ["run", "--", "run"] # This task also depends on your system configuration, same goes as read above. [tasks.start-client] +workspace = false command = "gsudo" args = ["${WORLDS_PATH}"] [tasks.runc] +workspace = false dependencies = ["start-client", "run"] [tasks.runw] +workspace = false env = { "DISABLE_PROMPT" = true } dependencies = ["checkf"] command = "cargo" @@ -67,16 +72,19 @@ args = ["run", "--", "run"] watch = true [tasks.docker-build] +workspace = false command = "nix-build" args = ["docker.nix"] [tasks.docker-load] +workspace = false script_runner = "@shell" script = ''' docker load < result ''' [tasks.docker-run] +workspace = false command = "docker" args = [ "run", @@ -87,6 +95,7 @@ args = [ ] [tasks.docker-run-i] +workspace = false command = "docker" args = [ "run", @@ -100,9 +109,11 @@ args = [ # Build 'n' load [tasks.bnl] +workspace = false dependencies = ["docker-build", "docker-load"] [tasks.ask-discord-token] +workspace = false script = ''' #!@duckscript @@ -114,6 +125,7 @@ set_env GITHUB_TOKEN ${github_token} ''' [tasks.act] +workspace = false dependencies = ["ask-discord-token"] command = "act" args = ["-s", "GITHUB_TOKEN=${GITHUB_TOKEN}"] |