We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e69c2d commit 7ee1603Copy full SHA for 7ee1603
lib/singed/cli.rb
@@ -112,9 +112,9 @@ def run
112
end
113
114
# clean the report, similar to how Singed::Report does
115
- json = JSON.parse(filename.read).with_indifferent_access
+ json = JSON.parse(filename.read)
116
json['shared']['frames'].each do |frame|
117
- frame[:file] = Singed.filter_line(frame[:file])
+ frame['file'] = Singed.filter_line(frame['file'])
118
119
filename.write(JSON.dump(json))
120
0 commit comments