Skip to content

Commit 6817891

Browse files
committed
Add cmd/cws entry point for proper binary naming via go install
1 parent f86c4ef commit 6817891

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Binary
2-
cws
2+
/cws
33

44
# Config (contains secrets)
55
cws.toml

cmd/cws/main.go

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
package main
2+
3+
import "github.com/null3000/cws-cli/cmd"
4+
5+
func main() {
6+
cmd.Execute()
7+
}

0 commit comments

Comments
 (0)