cargo-make 0.3.77

Rust task runner and build tool.
1
2
3
4
5
6
7
8
9
10
11
12
13
14

[tasks.echo]
script = [
    "echo var: ${SKIP_TASK}",
    "echo hello"
]

[tasks.wrapper]
condition = { env_not_set = [ "SKIP_TASK" ] }
run_task = "echo"

[tasks.test-flow]
env = { "SKIP_TASK" = "true" }
run_task = "wrapper"