Skip to content

Commit 50c5d6f

Browse files
committed
[rb] add cdp v106 remove v103
1 parent 3170a49 commit 50c5d6f

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

rb/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ package(default_visibility = ["//:__subpackages__"])
1111

1212
CDP_VERSIONS = [
1313
"v85",
14-
"v103",
1514
"v104",
1615
"v105",
16+
"v106",
1717
]
1818

1919
copy_file(

rb/lib/selenium/devtools/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@
1919

2020
module Selenium
2121
module DevTools
22-
VERSION = '0.105.0'
22+
VERSION = '0.106.0'
2323
end # DevTools
2424
end # Selenium

rb/private/gem_builder.tpl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ def copy_srcs(from:, to:)
1111
Dir.chdir(from) do
1212
Dir.glob('**/*').each do |src|
1313
dst = File.join(to, src)
14+
raise 'unable to find ' + src unless File.exist?(src)
1415
if File.directory?(src)
1516
FileUtils.mkdir_p(dst)
1617
else

0 commit comments

Comments
 (0)