diff options
| author | mo khan <mo.khan@gmail.com> | 2020-02-02 16:02:44 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-02-02 16:02:44 -0700 |
| commit | 9b9d1473b0c26302e16c2d86310bf176d775fc28 (patch) | |
| tree | 026a16f213bc18568ad6486a321e117389b79df7 /lib | |
| parent | c5ce6876a2014569b934d259e37cad78bcc8469c (diff) | |
Fix linter errorsv0.4.0
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/spandx/cli.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/spandx/cli.rb b/lib/spandx/cli.rb index 3a1204c..95dd16d 100644 --- a/lib/spandx/cli.rb +++ b/lib/spandx/cli.rb @@ -19,9 +19,9 @@ module Spandx desc 'build', 'Build a package index' method_option :help, aliases: '-h', type: :boolean, - desc: 'Display usage information' + desc: 'Display usage information' method_option :directory, aliases: '-d', type: :string, - desc: "Directory to build index in" + desc: 'Directory to build index in' def build(*) if options[:help] invoke :help, ['build'] @@ -33,7 +33,7 @@ module Spandx desc 'scan LOCKFILE', 'Scan a lockfile and list dependencies/licenses' method_option :help, aliases: '-h', type: :boolean, - desc: 'Display usage information' + desc: 'Display usage information' def scan(lockfile = nil) if options[:help] invoke :help, ['scan'] |
