We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5dc858 commit 4e23da3Copy full SHA for 4e23da3
seleniumbase/console_scripts/sb_install.py
@@ -661,6 +661,11 @@ def main(override=None):
661
print("Making [%s %s] executable ..." % (driver_file, use_version))
662
make_executable(driver_path)
663
print("%s[%s] is now ready for use!%s" % (c1, driver_file, cr))
664
+ if copy_to_path and os.path.exists(LOCAL_PATH):
665
+ path_file = LOCAL_PATH + f_name
666
+ shutil.copyfile(new_file, path_file)
667
+ make_executable(path_file)
668
+ print("Also copied to: %s%s%s" % (c3, path_file, cr))
669
print("")
670
elif name == "operadriver":
671
if len(contents) > 3:
0 commit comments