mirror of
https://github.com/go-task/task.git
synced 2024-12-14 10:52:43 +02:00
A task runner / simpler Make alternative written in Go
https://taskfile.dev/
b7112e02db
Double -s argument does not make sense according to curl manual page. -s stands for silent, while -S (capital S) stands for showing the error. When used in combination, curl shows an error message if it fails, but disables progress meter. Finally, in the end of sh command there is -d, which stands for debug and contradicts -sS curl arguments. I suggest to remove curl silencers all together, because more debug is better in CIs. I also suggest to use --location instead of -L for clarity. |
||
---|---|---|
.github | ||
args | ||
cmd/task | ||
completion | ||
docs | ||
internal | ||
taskfile | ||
testdata | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
.goreleaser.yml | ||
CHANGELOG.md | ||
errors.go | ||
go.mod | ||
go.sum | ||
help.go | ||
init.go | ||
install-task.sh | ||
LICENSE | ||
precondition.go | ||
README.md | ||
status.go | ||
task_test.go | ||
task.go | ||
Taskfile.yml | ||
variables.go | ||
watch.go |
Task
Task is a task runner / build tool that aims to be simpler and easier to use than, for example, GNU Make.
See taskfile.dev for the documentation.