mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-14 08:34:07 -08:00
6de4dfff87
Some checks are pending
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Waiting to run
12 lines
420 B
Diff
12 lines
420 B
Diff
diff --git a/js/helper.js b/js/helper.js
|
|
index 37798b9444d39a8713327ed12adf3e76f03188a4..08d49b7a5c058c4d29c9929c0c524c85b14b330e 100644
|
|
--- a/js/helper.js
|
|
+++ b/js/helper.js
|
|
@@ -15,6 +15,7 @@ function getBinaryPath() {
|
|
const parts = [];
|
|
parts.push(__dirname);
|
|
parts.push('..');
|
|
+ parts.push('bin');
|
|
parts.push(`sentry-cli${process.platform === 'win32' ? '.exe' : ''}`);
|
|
return path.resolve(...parts);
|
|
}
|