File tree Expand file tree Collapse file tree 2 files changed +10
-3
lines changed
java/src/org/openqa/selenium/bidi/script Expand file tree Collapse file tree 2 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -481,6 +481,7 @@ task :authors do
481
481
end
482
482
483
483
namespace :copyright do
484
+ desc 'Update Copyright notices on all files in repo'
484
485
task :update do
485
486
Copyright . new . update (
486
487
FileList [ 'javascript/**/*.js' ] . exclude (
@@ -497,11 +498,18 @@ namespace :copyright do
497
498
)
498
499
)
499
500
Copyright . new . update ( FileList [ 'javascript/**/*.tsx' ] )
500
- Copyright . new ( comment_characters : '#' ) . update ( FileList [ 'py/**/*.py' ] )
501
+ Copyright . new ( comment_characters : '#' ) . update ( FileList [ 'py/**/*.py' ] . exclude (
502
+ 'py/selenium/webdriver/common/bidi/cdp.py' ,
503
+ 'py/generate.py' ,
504
+ 'py/selenium/webdriver/common/devtools/**/*' ,
505
+ 'py/venv/**/*' )
506
+ )
501
507
Copyright . new ( comment_characters : '#' , prefix : [ "# frozen_string_literal: true\n " , "\n " ] )
502
- . update ( FileList [ 'rb/**/*.rb' ] )
508
+ . update ( FileList [ 'rb/**/*.rb' ] )
503
509
Copyright . new . update ( FileList [ 'java/**/*.java' ] )
504
510
Copyright . new . update ( FileList [ 'rust/**/*.rs' ] )
511
+
512
+ sh './scripts/format.sh'
505
513
end
506
514
end
507
515
Original file line number Diff line number Diff line change 15
15
// specific language governing permissions and limitations
16
16
// under the License.
17
17
18
-
19
18
package org .openqa .selenium .bidi .script ;
20
19
21
20
public enum RealmType {
You can’t perform that action at this time.
0 commit comments