Skip to content

Commit 1014db5

Browse files
committed
Add --no-server to rubocop call
1 parent aecbc0f commit 1014db5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ GIT
77

88
GIT
99
remote: https://github.com/foobara/files-generator.git
10-
revision: a19a353c050fd802a53f1781c7c4d108a41a1544
10+
revision: 8e9439014484892bb49a1d720399d924f853baea
1111
specs:
1212
foobara-files-generator (0.1.0)
1313

src/write_organization_to_disk.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def run_post_generation_tasks
4747

4848
def rubocop_autocorrect
4949
# :nocov:
50-
Open3.popen3("bundle exec rubocop -A") do |_stdin, _stdout, stderr, wait_thr|
50+
Open3.popen3("bundle exec rubocop --no-server -A") do |_stdin, _stdout, stderr, wait_thr|
5151
exit_status = wait_thr.value
5252
unless exit_status.success?
5353
raise "could not rubocop -A. #{stderr.read}"

0 commit comments

Comments
 (0)