Skip to content

Commit 5b6464f

Browse files
committed
build: use separate env vars for signing
1 parent 8bac885 commit 5b6464f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ $(PKG): release-only
277277
rm -rf out/deps out/Release
278278
$(PYTHON) ./configure --without-snapshot --dest-cpu=x64 --tag=$(TAG)
279279
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)
280-
SIGN="$(SIGN)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
280+
SIGN="$(APP_SIGN)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
281281
lipo $(PKGDIR)/32/usr/local/bin/node \
282282
$(PKGDIR)/usr/local/bin/node \
283283
-output $(PKGDIR)/usr/local/bin/node-universal \
@@ -288,7 +288,7 @@ $(PKG): release-only
288288
--id "org.nodejs.Node" \
289289
--doc tools/osx-pkg.pmdoc \
290290
--out $(PKG)
291-
SIGN="$(SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh
291+
SIGN="$(INT_SIGN)" PKG="$(PKG)" bash tools/osx-productsign.sh
292292

293293
$(TARBALL): release-only node doc
294294
git archive --format=tar --prefix=$(TARNAME)/ HEAD | tar xf -

0 commit comments

Comments
 (0)