Author: Steven Edwards [steven@stephenwithav.com]
Hash: a88c1fbb43a7945d4804721080dadae715a24630
Timestamp: Sun, 13 Jan 2019 10:59:28 +0000 (5 years ago)

+1 -1 +/-1 browse
s/start/create/ for create command.
1diff --git a/main.go b/main.go
2index 939caf5..971e7d5 100644
3--- a/main.go
4+++ b/main.go
5 @@ -156,7 +156,7 @@ func main() {
6 app.Version("v version", Version)
7 app.Command("start s", "start a new task", start(path))
8 app.Command("init", "initialize the sqlite database", initialize(path))
9- app.Command("create c", "create a new task without starting", start(path))
10+ app.Command("create c", "create a new task without starting", create(path))
11 app.Command("list l", "list historical tasks", list(path))
12 app.Command("delete d", "delete a stored task", _delete(path))
13 app.Command("status st", "output the current status", _status(path))