aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/create.go
diff options
context:
space:
mode:
authorClemens Fries <github-lettersnail@xenoworld.de>2018-11-25 11:06:32 +0100
committerClemens Fries <github-lettersnail@xenoworld.de>2018-11-25 11:06:32 +0100
commiteac80b3843dbd94de2fc00e29c885dd90e261679 (patch)
tree377672a2a7a00d976dfdae579e42421aba7cec78 /cmd/create.go
parent324319bb816cf52f516dbe828a4e4495148939ec (diff)
Rename project from 'clockrotz' to 'lettersnail'
You can't always wait for the right name to appear before starting a project, so I chose a strange name that wasn't good. I finally came up with a name I like.
Diffstat (limited to 'cmd/create.go')
-rw-r--r--cmd/create.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/create.go b/cmd/create.go
index ee682fa..95bbdc9 100644
--- a/cmd/create.go
+++ b/cmd/create.go
@@ -21,7 +21,7 @@ import (
"bufio"
"fmt"
"github.com/docopt/docopt.go"
- . "github.com/githubert/clockrotz/common"
+ . "github.com/githubert/lettersnail/common"
"io/ioutil"
"os"
"os/exec"
@@ -34,7 +34,7 @@ var usageCreate =
// tag::create[]
`
Usage:
- clockrotz create [--draft=FILE] [options]
+ lettersnail create [--draft=FILE] [options]
Options:
--help Show this help.
@@ -50,7 +50,7 @@ Options:
func Create(argv []string, conf *Configuration) {
args, _ := docopt.Parse(usageCreate, argv, true, "", false)
- tmpFile, err := ioutil.TempFile("", "clockrotz")
+ tmpFile, err := ioutil.TempFile("", "lettersnail")
if err != nil {
fmt.Printf("Error while creating temporary file: %s\n", err.Error())