We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65fa00d commit 1f6b3f5Copy full SHA for 1f6b3f5
tasks/steep.rake
@@ -69,7 +69,10 @@ namespace :steep do
69
File
70
.foreach('Steepfile')
71
.with_object([]) { |line, ignored_files| line =~ /^\s*ignore\s+(["'])(.*?(?:\\?.)*?)\1/ && ignored_files << $2 }
72
- .each { |file| $stdout.write("|datadog|#{file}|ignored|N/A|N/A|N/A|0|\n") }
+ .each do |file|
73
+ $stdout.write("|datadog|#{file}|ignored|N/A|N/A|N/A|0|\n")
74
+ warn "Ignored file '#{file}' does not exist. Please remove it from the Steepfile." unless File.exist?(file)
75
+ end
76
else
77
sh "steep stats --format=#{format}"
78
end
0 commit comments