Skip to content

Commit 73569c1

Browse files
committed
feat: V1 say
1 parent 909fbd3 commit 73569c1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
GOPKG ?= ultre.me/speechotron
2-
DOCKER_IMAGE ?= moul/speechotron
2+
DOCKER_IMAGE ?= ultreme/speechotron
33
GOBINS ?= .
44
NPM_PACKAGES ?= .
55

main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func main() {
3333

3434
pronounce := &ffcli.Command{
3535
Name: "pronounce",
36-
Usage: "pronounce [-v VOICE] PRONOUNCE",
36+
Usage: "pronounce [-v VOICE] WORDS...",
3737
FlagSet: pronounceFlags,
3838
LongHelp: fmt.Sprintf("VOICES\n %s", strings.Join(append(voiceList(pronounceBox), "RANDOM"), "\n ")),
3939
Exec: func(args []string) error {
@@ -95,7 +95,7 @@ func main() {
9595

9696
say := &ffcli.Command{
9797
Name: "say",
98-
Usage: "say [-v VOICE] SAY",
98+
Usage: "say [-v VOICE] WORDS...",
9999
FlagSet: sayFlags,
100100
LongHelp: fmt.Sprintf("VOICES\n %s", strings.Join(append(voiceList(sayBox), "RANDOM"), "\n ")),
101101
Exec: func(args []string) error {

0 commit comments

Comments
 (0)