pipeline-cli 0.5.2

A build tools written by rust to build project and execute a serials of task.
1
2
3
4
5
6
let c="ls"
pipeline("dev"){
    step("web"){
        cmd(c)
    }
}