Skip to content

Commit 95f7b94

Browse files
committed
v1.4.3
1 parent 0160f5d commit 95f7b94

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Join Slack room](https://img.shields.io/badge/%23task-chat%20room-blue.svg)](https://gophers.slack.com/messages/task)
22
[![Build Status](https://travis-ci.org/go-task/task.svg?branch=master)](https://travis-ci.org/go-task/task)
33

4-
# Task - Simple task runner / "Make" alternative
4+
# Task - A task runner / simpler Make alternative written in Go
55

66
Task is a simple tool that allows you to easily run development and build
77
tasks. Task is written in Golang, but can be used to develop any language.
@@ -21,6 +21,7 @@ It aims to be simpler and easier to use then [GNU Make][make].
2121
- [Help](#help)
2222
- [Silent mode](#silent-mode)
2323
- [Watch tasks](#watch-tasks-experimental)
24+
- [Task in the wild](#task-in-the-wild)
2425
- [Alternative task runners](#alternative-task-runners)
2526

2627
## Installation
@@ -508,9 +509,13 @@ so task know which files to watch.
508509
- [tj/robo][robo]
509510
- [dogtools/dog][dog]
510511
- [goeuro/myke][myke]
512+
- [dreadl0ck/zeus][zeus]
511513
- Go based:
512-
- [go-godo][godo]
514+
- [go-godo/godo][godo]
513515
- [markbates/grift][grift]
516+
- [nstratos/make.go][make.go]
517+
- Make based:
518+
- [tj/mmake][mmake]
514519

515520
[make]: https://www.gnu.org/software/make/
516521
[releases]: https://github.com/go-task/task/releases
@@ -519,8 +524,11 @@ so task know which files to watch.
519524
[robo]: https://github.com/tj/robo
520525
[dog]: https://github.com/dogtools/dog
521526
[myke]: https://github.com/goeuro/myke
527+
[zeus]: https://github.com/dreadl0ck/zeus
522528
[godo]: https://github.com/go-godo/godo
523529
[grift]: https://github.com/markbates/grift
530+
[make.go]: https://github.com/nstratos/make.go
531+
[mmake]: https://github.com/tj/mmake
524532
[sh]: https://github.com/mvdan/sh
525533
[post-hugo]: https://blog.carlmjohnson.net/post/2017/hugo-asset-pipeline/
526534
[minify]: https://github.com/tdewolff/minify/tree/master/cmd/minify

Taskvars.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
GIT_COMMIT: $git log -n 1 --format=%h
1+
GIT_COMMIT:
2+
sh: git log -n 1 --format=%h
23

34
GO_PACKAGES:
45
.
6+
./args
57
./cmd/task
68
./execext

args/args.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ import (
88
)
99

1010
var (
11+
// ErrVariableWithoutTask is returned when variables are given before any task
1112
ErrVariableWithoutTask = errors.New("task: variable given before any task")
1213
)
1314

15+
// Parse parses command line argument: tasks and vars of each task
1416
func Parse(args ...string) ([]task.Call, error) {
1517
var calls []task.Call
1618

0 commit comments

Comments
 (0)