We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cmd
1 parent 1c18f60 commit 45d51d8Copy full SHA for 45d51d8
.gitignore
@@ -26,4 +26,4 @@ _testmain.go
26
.DS_Store
27
.vscode
28
result
29
-/bin
+/machineid
README.md
@@ -24,7 +24,7 @@ go get github.com/denisbrodbeck/machineid
24
You can also add the cli app directly to your `$GOPATH/bin` with
25
```bash
-go get github.com/denisbrodbeck/machineid/cli/machineid
+go get github.com/denisbrodbeck/machineid/cmd/machineid
```
30
## Usage
cli/machineid/main.go renamed to cmd/machineid/main.go
makefile
@@ -1,10 +1,10 @@
1
.PHONY: build clean default test
2
3
build: clean
4
- @go build -o bin/machineid ./cli/machineid/main.go
+ @go build -o machineid ./cmd/machineid/main.go
5
6
clean:
7
- @rm -rf ./bin/*
+ @rm -rf ./machineid
8
9
test:
10
go test ./...
0 commit comments