File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -1118,12 +1118,13 @@ namespace :all do
11181118 end
11191119
11201120 desc 'Update all API Documentation'
1121- task :docs do
1122- Rake ::Task [ 'java:docs' ] . invoke ( 'skip_update' )
1123- Rake ::Task [ 'py:docs' ] . invoke ( 'skip_update' )
1124- Rake ::Task [ 'rb:docs' ] . invoke ( 'skip_update' )
1125- Rake ::Task [ 'dotnet:docs' ] . invoke ( 'skip_update' )
1126- Rake ::Task [ 'node:docs' ] . invoke ( 'skip_update' )
1121+ task :docs do |_task , arguments |
1122+ args = arguments . to_a
1123+ Rake ::Task [ 'java:docs' ] . invoke ( *( args + [ 'skip_update' ] ) )
1124+ Rake ::Task [ 'py:docs' ] . invoke ( *( args + [ 'skip_update' ] ) )
1125+ Rake ::Task [ 'rb:docs' ] . invoke ( *( args + [ 'skip_update' ] ) )
1126+ Rake ::Task [ 'dotnet:docs' ] . invoke ( *( args + [ 'skip_update' ] ) )
1127+ Rake ::Task [ 'node:docs' ] . invoke ( *( args + [ 'skip_update' ] ) )
11271128
11281129 update_gh_pages
11291130 end
You can’t perform that action at this time.
0 commit comments