Skip to content

Commit c83a00f

Browse files
committed
Merge pull request #72 from codeclimate/will/cleanup
Misc cleanup
2 parents 3765013 + 982e289 commit c83a00f

File tree

4 files changed

+1
-4
lines changed

4 files changed

+1
-4
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ RUN cd /usr/src/app/vendor/php-parser/ && composer install --prefer-source --no-
2020
RUN adduser app -u 9000
2121

2222
COPY . /usr/src/app
23-
run chown -R app .
23+
RUN chown -R app .
2424
RUN npm install
2525

2626
USER app

spec/cc/engine/analyzers/javascript/main_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
describe "#run" do
1212
it "prints an issue" do
13-
1413
create_source_file("foo.js", <<-EOJS)
1514
console.log("hello JS!");
1615
console.log("hello JS!");

spec/cc/engine/analyzers/php/main_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
describe "#run" do
1212
it "prints an issue" do
13-
1413
create_source_file("foo.php", <<-EOPHP)
1514
<?php
1615
function hello($name) {

spec/cc/engine/analyzers/python/main_spec.rb

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010

1111
describe "#run" do
1212
it "prints an issue" do
13-
1413
create_source_file("foo.py", <<-EOJS)
1514
print("Hello", "python")
1615
print("Hello", "python")

0 commit comments

Comments
 (0)