1
0
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/
Go to file
Eugene Zhukov b7112e02db
Update curl arguments in installation.md
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.
2020-11-17 10:02:06 +02:00
.github Documentation updates 2020-09-06 14:33:28 -03:00
args Move args and taskfile packages to root directory 2020-08-19 10:59:58 +02:00
cmd/task Move args and taskfile packages to root directory 2020-08-19 10:59:58 +02:00
completion Make completion compatible with MacOS 2020-09-03 18:52:36 -04:00
docs Update curl arguments in installation.md 2020-11-17 10:02:06 +02:00
internal Move args and taskfile packages to root directory 2020-08-19 10:59:58 +02:00
taskfile Post-fixes and CHANGELOG for #385 2020-10-12 21:16:09 -03:00
testdata Merge pull request #385 from chris-garrett/dev/378-missing-env 2020-10-12 21:12:08 -03:00
.editorconfig .editorconfig: Remove "indent_size" 2019-12-07 19:49:55 -03:00
.gitattributes Initial commit 2017-02-26 20:14:36 -03:00
.gitignore Update .gitignore 2019-09-07 14:46:46 -03:00
.goreleaser.yml name_template is now file_name_template 2020-05-14 20:48:33 +02:00
CHANGELOG.md Post-fixes and CHANGELOG for #385 2020-10-12 21:16:09 -03:00
errors.go Fix suggestion to use task --init not being shown anymore 2018-08-19 16:23:32 -03:00
go.mod Upgrade mvdan.cc/sh to v3.1.2 2020-08-16 21:05:52 -03:00
go.sum Upgrade mvdan.cc/sh to v3.1.2 2020-08-16 21:05:52 -03:00
help.go Move args and taskfile packages to root directory 2020-08-19 10:59:58 +02:00
init.go bump version of auto generated taskfile 2019-08-19 21:01:36 +02:00
install-task.sh Using godownloader to generate a install script 2018-04-07 15:07:43 -03:00
LICENSE MIT LICENS file 2017-02-28 09:15:25 -03:00
precondition.go Move args and taskfile packages to root directory 2020-08-19 10:59:58 +02:00
README.md Documentation updates 2020-09-06 14:33:28 -03:00
status.go Move args and taskfile packages to root directory 2020-08-19 10:59:58 +02:00
task_test.go Merge pull request #385 from chris-garrett/dev/378-missing-env 2020-10-12 21:12:08 -03:00
task.go Move args and taskfile packages to root directory 2020-08-19 10:59:58 +02:00
Taskfile.yml Remove the vendor/ directory 2020-08-16 15:46:22 -03:00
variables.go Move args and taskfile packages to root directory 2020-08-19 10:59:58 +02:00
watch.go Move args and taskfile packages to root directory 2020-08-19 10:59:58 +02:00

Test GoReleaser GitHub All Releases

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.