File tree Expand file tree Collapse file tree 6 files changed +12
-0
lines changed Expand file tree Collapse file tree 6 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1717
1818CURRENT_VERSION=$( grep " #define ADA_VERSION" " $DEPS_DIR /ada/ada.h" | sed -n " s/^.*VERSION \" \(.*\)\" /\1/p" )
1919
20+ echo " Comparing $NEW_VERSION with $CURRENT_VERSION "
21+
2022if [ " $NEW_VERSION " = " $CURRENT_VERSION " ]; then
2123 echo " Skipped because ada is on the latest version."
2224 exit 0
Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ NPM="$ROOT/deps/npm/bin/npm-cli.js"
1616NEW_VERSION=$( " $NODE " " $NPM " view eslint dist-tags.latest)
1717CURRENT_VERSION=$( " $NODE " -p " require('./tools/node_modules/eslint/package.json').version" )
1818
19+ echo " Comparing $NEW_VERSION with $CURRENT_VERSION "
20+
1921if [ " $NEW_VERSION " = " $CURRENT_VERSION " ]; then
2022 echo " Skipped because ESlint is on the latest version."
2123 exit 0
Original file line number Diff line number Diff line change @@ -24,6 +24,8 @@ CURRENT_SUFFIX_VERSION=$(grep "#define UV_VERSION_SUFFIX" "$VERSION_H" | sed -n
2424SUFFIX_STRING=$( [ " $CURRENT_IS_RELEASE " = 1 ] || [ -z " $CURRENT_SUFFIX_VERSION " ] && echo " " || echo " -$CURRENT_SUFFIX_VERSION " )
2525CURRENT_VERSION=" $CURRENT_MAJOR_VERSION .$CURRENT_MINOR_VERSION .$CURRENT_PATCH_VERSION$SUFFIX_STRING "
2626
27+ echo " Comparing $NEW_VERSION with $CURRENT_VERSION "
28+
2729if [ " $NEW_VERSION " = " $CURRENT_VERSION " ]; then
2830 echo " Skipped because libuv is on the latest version."
2931 exit 0
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ NGTCP2_VERSION_H="$DEPS_DIR/ngtcp2/ngtcp2/lib/includes/ngtcp2/version.h"
2020
2121CURRENT_VERSION=$( grep " #define NGTCP2_VERSION" " $NGTCP2_VERSION_H " | sed -n " s/^.*VERSION \" \(.*\)\" /\1/p" )
2222
23+ echo " Comparing $NEW_VERSION with $CURRENT_VERSION "
24+
2325if [ " $NEW_VERSION " = " $CURRENT_VERSION " ]; then
2426 echo " Skipped because ngtcp2 is on the latest version."
2527 exit 0
Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ NPM="$ROOT/deps/npm/bin/npm-cli.js"
1515NEW_VERSION=$( " $NODE " " $NPM " view postject dist-tags.latest)
1616CURRENT_VERSION=$( " $NODE " -p " require('./test/fixtures/postject-copy/node_modules/postject/package.json').version" )
1717
18+ echo " Comparing $NEW_VERSION with $CURRENT_VERSION "
19+
1820if [ " $NEW_VERSION " = " $CURRENT_VERSION " ]; then
1921 echo " Skipped because Postject is on the latest version."
2022 exit 0
Original file line number Diff line number Diff line change 1616) "
1717CURRENT_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+
1921if [ " $NEW_VERSION " = " $CURRENT_VERSION " ]; then
2022 echo " Skipped because simdutf is on the latest version."
2123 exit 0
You can’t perform that action at this time.
0 commit comments