Skip to content
This repository was archived by the owner on May 24, 2025. It is now read-only.

Commit 8e0398f

Browse files
committed
Update output option documentation
1 parent 3138643 commit 8e0398f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,9 +93,9 @@ container-scan-to-sarif --help
9393
9494
Usage of container-scan-to-sarif:
9595
-input string
96-
Path to the Azure Container Scan JSON Report (default "./scanreport.json")
96+
Path to the Container Scan JSON Report (default "./scanreport.json")
9797
-output string
98-
Path to the SARIF output file. Default output is STDOUT
98+
Path to the SARIF output file. If not specified, the resulting SARIF report will be pretty-printed to the standard output.
9999
```
100100

101101
## Building from source

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ import (
99
)
1010

1111
func main() {
12-
inputPath := flag.String("input", "./scanreport.json", "Path to the Azure Container Scan JSON Report")
13-
outputPath := flag.String("output", "", "Path to the SARIF output file. Default output is STDOUT")
12+
inputPath := flag.String("input", "./scanreport.json", "Path to the Container Scan JSON Report")
13+
outputPath := flag.String("output", "", "Path to the SARIF output file. If not specified, the resulting SARIF report will be pretty-printed to the standard output.")
1414

1515
flag.Parse()
1616

0 commit comments

Comments
 (0)