From 52b63ae2d06c5e1b5d9fc8695e46f57c1ac8685e Mon Sep 17 00:00:00 2001 From: Leszek Swirski Date: Fri, 26 May 2023 14:43:54 +0200 Subject: [PATCH] Fix v8 repository URL Doesn't have `.git` anymore --- update.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update.py b/update.py index f612115c6b..3a0c8656cb 100755 --- a/update.py +++ b/update.py @@ -37,7 +37,7 @@ def step(title): step(f'Update V8 checkout in: {GIT_DIR}') if not GIT_DIR.exists(): - run('git', 'clone', 'https://chromium.googlesource.com/v8/v8.git', GIT_DIR) + run('git', 'clone', 'https://chromium.googlesource.com/v8/v8', GIT_DIR) git('fetch', '--all') step('List branches')