Skip to content

Commit fa91b18

Browse files
committed
build: fix RELEASE check
fixes broken 1.7.0 build, unreviewed quick patch Ref: #1405 PR-URL: #1421
1 parent 491c3c8 commit fa91b18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ docclean:
197197
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
198198
VERSION=v$(RAWVER)
199199
FULLVERSION=$(VERSION)
200-
RELEASE=($shell sed -ne 's/#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h)
200+
RELEASE=$(shell sed -ne 's/#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h)
201201
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]')
202202
NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/')
203203
ifeq ($(findstring x86_64,$(shell uname -m)),x86_64)

0 commit comments

Comments
 (0)