Skip to content

Commit 86e0c9d

Browse files
committed
tools: fix lint V8
1 parent 7f19d30 commit 86e0c9d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

doc/contributing/maintaining/maintaining-dependencies.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This a list of all the dependencies:
3030
* [simdutf 3.2.9][]
3131
* [undici 5.22.1][]
3232
* [uvwasi 0.0.16][]
33-
* [v8 11.3.244.8][]
33+
* [V8 11.3.244.8][]
3434
* [zlib 1.2.13][]
3535

3636
Any code which meets one or more of these conditions should
@@ -305,7 +305,7 @@ implement WASI calls.
305305
Under the hood, uvwasi leverages libuv where possible for maximum portability.
306306
See [maintaining-web-assembly][] for more informations.
307307

308-
### v8 11.3.244.8
308+
### V8 11.3.244.8
309309

310310
[V8](https://chromium.googlesource.com/v8/v8.git/) is Google's open source
311311
high-performance JavaScript and WebAssembly engine, written in C++.

tools/dep_updaters/update-v8-patch.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ CURRENT_PATCH_VERSION=$(grep "#define V8_PATCH_LEVEL" "$DEPS_DIR/v8/include/v8-v
2626
NEW_VERSION="$CURRENT_MAJOR_VERSION.$CURRENT_MINOR_VERSION.$CURRENT_BUILD_VERSION.$CURRENT_PATCH_VERSION"
2727

2828

29-
# Update the version number
29+
# Update the version number. We have to call it twice because V8 is written
30+
# both in lowercase and uppdercase
3031
update_dependency_version "v8" "$NEW_VERSION"
32+
update_dependency_version "V8" "$NEW_VERSION"
3133

3234
echo "All done!"
3335
echo ""

0 commit comments

Comments
 (0)