Hotfix 2 - bad Chromium build, instances failed to terminate (#1072)

This commit is contained in:
ilike2burnthing
2024-02-17 05:53:45 +00:00
committed by GitHub
parent 3ca6d08f41
commit d21a332519
4 changed files with 11 additions and 7 deletions

View File

@@ -25,7 +25,7 @@ def clean_files():
def download_chromium():
# https://commondatastorage.googleapis.com/chromium-browser-snapshots/index.html?prefix=Linux_x64/
revision = "1250005" if os.name == 'nt' else '1250006'
revision = "1260008" if os.name == 'nt' else '1260015'
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')