@@ -40,13 +40,14 @@ class CLI < Thor
40
40
41
41
desc ( 'check' , 'Check dependencies for known vulnerabilities' )
42
42
method_option ( 'path' , :aliases => :p , :type => :string , :default => Dir . pwd )
43
+ method_option ( 'files' , :type => :string )
43
44
method_option ( 'formatter' , :aliases => :f , :type => :string , :enum => FORMATTERS . map { |f | f . name . split ( '::' ) . last . downcase } , :default => FORMATTERS . first . name . split ( '::' ) . last . downcase )
44
45
method_option ( 'platform' , :aliases => :m , :type => :string , :enum => YAVDB ::Constants ::POSSIBLE_PACKAGE_MANAGERS . map ( &:downcase ) )
45
46
method_option ( 'output-path' , :aliases => :o , :type => :string )
46
47
method_option ( 'database-path' , :type => :string , :aliases => :p , :default => YAVDB ::Constants ::DEFAULT_YAVDB_DATABASE_PATH )
47
48
48
49
def check
49
- manifests = API . check ( options [ 'path' ] , options [ 'platform' ] , options [ 'database-path' ] )
50
+ manifests = API . check ( options [ 'path' ] , options [ 'files' ] , options [ ' platform'] , options [ 'database-path' ] )
50
51
51
52
formatted_output =
52
53
FORMATTERS
@@ -58,6 +59,11 @@ def check
58
59
else
59
60
DependencySpy ::Outputs ::StdOut . write ( formatted_output )
60
61
end
62
+
63
+ has_vulnerabilities =
64
+ manifests . any? { |manifest | manifest . dependencies . any? { |dependency | dependency . vulnerabilities . any? } }
65
+
66
+ exit ( 1 ) if has_vulnerabilities
61
67
end
62
68
63
69
method_option ( 'vuln-db-path' , :aliases => :d , :type => :string , :default => YAVDB ::Constants ::DEFAULT_YAVDB_PATH )
0 commit comments