From 0d1d1a25da289f6efe559ecd710595cac871d292 Mon Sep 17 00:00:00 2001 From: Simon Laux Date: Sat, 4 Jun 2022 17:03:03 +0200 Subject: [PATCH] node: remove `npx` from build script, (#3396) * node: remove `npx` from build script, this broke flathub build * add pr number to changelog --- CHANGELOG.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad036c245..134abb5c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,12 @@ ## Changes - refactorings #3375 - - clean up series of webxdc info messages; `DC_EVENT_MSGS_CHANGED` is emitted on changes of existing info messages #3395 ## Fixes - do not reset our database if imported backup cannot be decrypted #3397 +- node: remove `npx` from build script, this broke flathub build #3396 ## 1.85.0 diff --git a/package.json b/package.json index 9551cb47f..355b0c450 100644 --- a/package.json +++ b/package.json @@ -42,7 +42,7 @@ "build": "npm run build:core && npm run build:bindings", "build:bindings": "npm run build:bindings:c && npm run build:bindings:ts", "build:bindings:c": "npm run build:bindings:c:c && npm run build:bindings:c:postinstall", - "build:bindings:c:c": "cd node && npx node-gyp rebuild", + "build:bindings:c:c": "cd node && node-gyp rebuild", "build:bindings:c:postinstall": "node node/scripts/postinstall.js", "build:bindings:ts": "cd node && tsc", "build:core": "npm run build:core:rust && npm run build:core:constants",