Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,19 +70,19 @@ You can always view help information on the various actions like so:

```
$ ossls -help
Usage of ./ossls:
-audit
Audit all dependencies.
-checksum
Calculate checksum for a file.
-config string
Path to configuration file. (default ".ossls.yml")
-list
List all dependencies.
-scan
Scan single dependency.
-version
Displays the version and exits.
Usage:
[command]

Available Commands:
audit Audit all dependencies
help Help about any command
version Displays the version (development) and exits

Flags:
-c, --config string path to configuration file (default ".ossls.yml")
-h, --help help for this command

Use " [command] --help" for more information about a command.
```

### Auditing Dependencies
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,3 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
gopkg.in/yaml.v2 v2.3.0 h1:clyUAQHOM3G0M3f5vQj7LuJrETvjVot3Z5el9nffUtU=
gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
4 changes: 0 additions & 4 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ func mainCmd() error {
c.PersistentFlags().StringP("config", "c", ".ossls.yml", "path to configuration file")

c.AddCommand(cmd.AuditCommand())
//c.AddCommand(cmd.ChecksumCommand())
//c.AddCommand(cmd.ListCommand())
//c.AddCommand(cmd.NoticeCommand())
//c.AddCommand(cmd.ScanCommand())
c.AddCommand(versionCommand())

return c.Execute()
Expand Down