Skip to content
This repository was archived by the owner on Feb 28, 2019. It is now read-only.

Commit b2781d5

Browse files
committed
Avoid watching file changes as this should not be needed and we are running up against the limit of inotify watches in TravisCI
1 parent 8bf04b7 commit b2781d5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tasks/gwt.rake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ CONTENT
5151
if ENV['GWT'].nil? || ENV['GWT'] == project.name
5252
modules = modules_complete ? gwt_modules : gwt_modules.collect {|gwt_module| "#{gwt_module}Test"}
5353
modules.each do |m|
54-
project.gwt([m], { :java_args => %w(-Xms512M -Xmx1024M),
54+
project.gwt([m], { :java_args => %w(-Xms512M -Xmx1024M -Dgwt.watchFileChanges=false),
5555
:dependencies => dependencies,
5656
:output_key => options[:output_key] || m })
5757
end

0 commit comments

Comments
 (0)