Skip to content

Commit

Permalink
squash: address linter issues
Browse files Browse the repository at this point in the history
Signed-off-by: Michael Dawson <[email protected]>
  • Loading branch information
mhdawson committed Jul 31, 2024
1 parent d8cbde5 commit 3b724e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/dep_updaters/update-undici.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ EOF

CURRENT_VERSION=$("$NODE" -p "require('$DEPS_DIR/undici/src/package.json').version")

echo $CURRENT_VERSION
echo $NEW_VERSION
echo "$CURRENT_VERSION"
echo "$NEW_VERSION"

# This function exit with 0 if new version and current version are the same
compare_dependency_version "undici" "$NEW_VERSION" "$CURRENT_VERSION"
Expand Down Expand Up @@ -62,7 +62,7 @@ echo "Unzipping..."
unzip "$UNDICI_ZIP.zip" -d "src"
mv "src/$UNDICI_ZIP" "$DEPS_DIR/undici/src"
rm "$UNDICI_ZIP.zip"
cd $ROOT
cd "$ROOT"

(
cd "$DEPS_DIR/undici/src"
Expand Down

0 comments on commit 3b724e2

Please sign in to comment.