Skip to content

Commit aee3d87

Browse files
committed
split up all the build rake tasks for build to work
1 parent e3367a4 commit aee3d87

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Rakefile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,13 @@ if (python?)
281281
task :test => [ :test_py ]
282282
end
283283

284-
task :build => [:all, :firefox, :remote, :selenium, :tests]
284+
task :build do
285+
Rake::Task[:all].execute
286+
Rake::Task[:firefox].execute
287+
Rake::Task[:remote].execute
288+
Rake::Task[:selenium].execute
289+
Rake::Task[:tests].execute
290+
end
285291

286292
desc 'Clean build artifacts.'
287293
task :clean do

0 commit comments

Comments
 (0)