Skip to content

Commit efc0520

Browse files
Update README with Go install instructions
Clarify instructions for Go installation and binary location.
1 parent 1d7b081 commit efc0520

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PROJECTS/docker-security-audit/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ go build -o docksec ./cmd/docksec
3838

3939
This builds a binary in the current directory. The `./` is required because the binary is not in your PATH.
4040

41-
### Option 2: Go install (for Go developers)
41+
### Option 2: Go install (for Go developers) This same project lives in a seperate repo https://github.com/CarterPerez-dev/docksec - in order to be able to:
4242

4343
```bash
4444
go install github.com/CarterPerez-dev/docksec/cmd/docksec@latest
4545
docksec scan
4646
```
4747

48-
This downloads the source, compiles it on your machine, and puts the binary in `~/go/bin/`. If that directory is in your PATH, you can run `docksec` directly without `./`.
48+
Because downloads the source, compiles it on your machine, and puts the binary in `~/go/bin/`. If that directory is in your PATH, you can run `docksec` directly without `./`.
4949

5050
The `/cmd/docksec` path is needed because the main package lives in that subdirectory, not at the repo root.
5151

0 commit comments

Comments
 (0)