Skip to content

Commit 9e1c5e8

Browse files
committed
minor fix
Signed-off-by: Vivek Kumar Sahu <[email protected]>
1 parent 2092973 commit 9e1c5e8

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

cmd/compliance.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@ var complianceCmd = &cobra.Command{
4343
sbomqs compliance --oct --json samples/sbomqs-spdx-syft.json
4444
4545
# Check a V3 Framing document compliance against a SBOM in a table output
46-
sbomqs compliance --fsct-v3 <sbom>
46+
sbomqs compliance --fsct <sbom>
4747
4848
# Check a V3 Framing document compliance against a SBOM in a JSON output
49-
sbomqs compliance --fsct-v3 -j <sbom>
49+
sbomqs compliance --fsct -j <sbom>
5050
`,
5151
Args: func(cmd *cobra.Command, args []string) error {
5252
if err := cobra.ExactArgs(1)(cmd, args); err != nil {

pkg/compliance/oct.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,6 @@ func octComponents(doc sbom.Document) []*db.Record {
287287

288288
func octPackageName(component sbom.GetComponent) *db.Record {
289289
if result := component.GetName(); result != "" {
290-
fmt.Println("result: ", result)
291290
return db.NewRecordStmt(PACK_NAME, component.GetName(), result, 10.0, "")
292291
}
293292

0 commit comments

Comments
 (0)