cargo-make 0.37.24

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

[tasks.shebang-sh]
script = '''
#!/bin/bash
echo hello
'''

[tasks.shebang-sh-arg]
script = '''
#!/usr/bin/env bash
echo hello
'''

[tasks.shebang-python]
script = '''
#!/usr/bin/env python3
print("Hello, World!")
'''