Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0b0818c

Browse filesBrowse files
marco-ippolitoMoLow
authored andcommitted
tools: add debug logs
PR-URL: #48060 Reviewed-By: Ruy Adorno <ruyadorno@google.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Deokjin Kim <deokjin81.kim@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent bdf366a commit 0b0818c
Copy full SHA for 0b0818c

File tree

Expand file treeCollapse file tree

5 files changed

+10
-0
lines changed
Open diff view settings
Filter options
Expand file treeCollapse file tree

5 files changed

+10
-0
lines changed
Open diff view settings
Collapse file

‎tools/dep_updaters/update-eslint.sh‎

Copy file name to clipboardExpand all lines: tools/dep_updaters/update-eslint.sh
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ NPM="$ROOT/deps/npm/bin/npm-cli.js"
1616
NEW_VERSION=$("$NODE" "$NPM" view eslint dist-tags.latest)
1717
CURRENT_VERSION=$("$NODE" -p "require('./tools/node_modules/eslint/package.json').version")
1818

19+
echo "Comparing $NEW_VERSION with $CURRENT_VERSION"
20+
1921
if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then
2022
echo "Skipped because ESlint is on the latest version."
2123
exit 0
Collapse file

‎tools/dep_updaters/update-libuv.sh‎

Copy file name to clipboardExpand all lines: tools/dep_updaters/update-libuv.sh
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ CURRENT_SUFFIX_VERSION=$(grep "#define UV_VERSION_SUFFIX" "$VERSION_H" | sed -n
2424
SUFFIX_STRING=$([ "$CURRENT_IS_RELEASE" = 1 ] || [ -z "$CURRENT_SUFFIX_VERSION" ] && echo "" || echo "-$CURRENT_SUFFIX_VERSION")
2525
CURRENT_VERSION="$CURRENT_MAJOR_VERSION.$CURRENT_MINOR_VERSION.$CURRENT_PATCH_VERSION$SUFFIX_STRING"
2626

27+
echo "Comparing $NEW_VERSION with $CURRENT_VERSION"
28+
2729
if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then
2830
echo "Skipped because libuv is on the latest version."
2931
exit 0
Collapse file

‎tools/dep_updaters/update-ngtcp2.sh‎

Copy file name to clipboardExpand all lines: tools/dep_updaters/update-ngtcp2.sh
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ NGTCP2_VERSION_H="$DEPS_DIR/ngtcp2/ngtcp2/lib/includes/ngtcp2/version.h"
2020

2121
CURRENT_VERSION=$(grep "#define NGTCP2_VERSION" "$NGTCP2_VERSION_H" | sed -n "s/^.*VERSION \"\(.*\)\"/\1/p")
2222

23+
echo "Comparing $NEW_VERSION with $CURRENT_VERSION"
24+
2325
if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then
2426
echo "Skipped because ngtcp2 is on the latest version."
2527
exit 0
Collapse file

‎tools/dep_updaters/update-postject.sh‎

Copy file name to clipboardExpand all lines: tools/dep_updaters/update-postject.sh
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ NPM="$ROOT/deps/npm/bin/npm-cli.js"
1515
NEW_VERSION=$("$NODE" "$NPM" view postject dist-tags.latest)
1616
CURRENT_VERSION=$("$NODE" -p "require('./test/fixtures/postject-copy/node_modules/postject/package.json').version")
1717

18+
echo "Comparing $NEW_VERSION with $CURRENT_VERSION"
19+
1820
if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then
1921
echo "Skipped because Postject is on the latest version."
2022
exit 0
Collapse file

‎tools/dep_updaters/update-simdutf.sh‎

Copy file name to clipboardExpand all lines: tools/dep_updaters/update-simdutf.sh
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ EOF
1616
)"
1717
CURRENT_VERSION=$(grep "#define SIMDUTF_VERSION" "$DEPS_DIR/simdutf/simdutf.h" | sed -n "s/^.*VERSION \"\(.*\)\"/\1/p")
1818

19+
echo "Comparing $NEW_VERSION with $CURRENT_VERSION"
20+
1921
if [ "$NEW_VERSION" = "$CURRENT_VERSION" ]; then
2022
echo "Skipped because simdutf is on the latest version."
2123
exit 0

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.