Skip to content

Commit 1425c9f

Browse files
authored
Merge pull request #77 from jvandellen/lw-cli-binary-change
Changed binary name from lw to lw-cli
2 parents 8c050ce + 278c1dc commit 1425c9f

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.goreleaser.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Make sure to check the documentation at http://goreleaser.com
2-
project_name: lw
2+
project_name: lw-cli
33
before:
44
hooks:
55
- go mod verify

cmd/completion.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Licensed under the Apache License, Version 2.0 (the "License");
55
you may not use this file except in compliance with the License.
66
You may obtain a copy of the License at
77
8-
http://www.apache.org/licenses/LICENSE-2.0
8+
http://www.apache.org/licenses/LICENSE-2.0
99
1010
Unless required by applicable law or agreed to in writing, software
1111
distributed under the License is distributed on an "AS IS" BASIS,
@@ -30,13 +30,13 @@ var completionCmd = &cobra.Command{
3030
3131
Bash:
3232
33-
$ source <(lw completion bash)
33+
$ source <(lw-cli completion bash)
3434
3535
# To load completions for each session, execute once:
3636
Linux:
37-
$ lw completion bash > /etc/bash_completion.d/lw
37+
$ lw-cli completion bash > /etc/bash_completion.d/lw-cli
3838
MacOS:
39-
$ lw completion bash > /usr/local/etc/bash_completion.d/lw
39+
$ lw-cli completion bash > /usr/local/etc/bash_completion.d/lw-cli
4040
4141
4242
`,

scripts/build/dynamic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
source scripts/build/.variables
44
set -e
5-
go build -x --ldflags "${LDFLAGS}" -o _exe/lw github.com/liquidweb/liquidweb-cli
5+
go build -x --ldflags "${LDFLAGS}" -o _exe/lw-cli github.com/liquidweb/liquidweb-cli
66
exit 0

scripts/build/static

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
source scripts/build/.variables
44
set -e
5-
CGO_ENABLED=0 go build -x -ldflags '-w -extldflags "-static"' --ldflags "${LDFLAGS}" -o _exe/lw github.com/liquidweb/liquidweb-cli
5+
CGO_ENABLED=0 go build -x -ldflags '-w -extldflags "-static"' --ldflags "${LDFLAGS}" -o _exe/lw-cli github.com/liquidweb/liquidweb-cli
66
exit 0

0 commit comments

Comments
 (0)