mk 0.7.13

Yet another simple task runner 🦀
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This example demonstrates how to ignore errors in a task.
# The `verbose_1` task echoes greet but does not output in command scope.
# The `verbose_2` task echoes greet but does not output in task scope.
# To run this example, use the following command:
# $ mk verbose_1
# $ mk verbose_2
tasks:
  verbose_1:
    commands:
      - command: echo "Hello, world 1!"
        verbose: false
    description: Verbose 1
  verbose_2:
    commands:
      - command: echo "Hello, world!"
    description: Verbose 2
    verbose: false