File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -9,14 +9,16 @@ class CodeclimateWrapper
9
9
def run_codeclimate ( filename = "" )
10
10
docker_platform = CodeclimateDiff . configuration [ "docker_platform" ] || "linux/amd64"
11
11
12
- `docker run \
12
+ output = `docker run \
13
13
--interactive --tty --rm \
14
14
--env CODECLIMATE_CODE="$PWD" \
15
15
--volume "$PWD":/code \
16
16
--volume /var/run/docker.sock:/var/run/docker.sock \
17
17
--volume /tmp/cc:/tmp/cc \
18
18
--platform #{ docker_platform } \
19
19
codeclimate/codeclimate analyze -f json #{ filename } `
20
+
21
+ output . gsub ( /.*?(?=\[ {)/im , "" ) # remove everything before the first json object (ie WARNINGS)
20
22
end
21
23
22
24
def pull_latest_image
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module CodeclimateDiff
4
- VERSION = "0.1.13 "
4
+ VERSION = "0.1.14 "
5
5
end
You can’t perform that action at this time.
0 commit comments