diff --git a/src/build_package.py b/src/build_package.py index 3ceda2d..cdb1165 100644 --- a/src/build_package.py +++ b/src/build_package.py @@ -25,8 +25,8 @@ def clean_files(): def download_chromium(): # https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Linux_x64/ - revision = "1090006" if os.name == 'nt' else '1090007' - arch = 'Win' if os.name == 'nt' else 'Linux_x64' + revision = "1140001" if os.name == 'nt' else '1140000' + arch = 'Win_x64' if os.name == 'nt' else 'Linux_x64' dl_file = 'chrome-win' if os.name == 'nt' else 'chrome-linux' dl_path = os.path.join(os.path.dirname(os.path.abspath(__file__)), os.pardir, 'dist_chrome') dl_path_folder = os.path.join(dl_path, dl_file)