mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 05:37:51 +00:00
b0dce6b477
Change-type: patch
16 lines
481 B
Diff
16 lines
481 B
Diff
diff --git a/node_modules/opn/index.js b/node_modules/opn/index.js
|
|
index 13dcb66..0f0c1df 100644
|
|
--- a/node_modules/opn/index.js
|
|
+++ b/node_modules/opn/index.js
|
|
@@ -51,7 +51,9 @@ module.exports = function (target, opts) {
|
|
if (opts.app) {
|
|
cmd = opts.app;
|
|
} else {
|
|
- cmd = path.join(__dirname, 'xdg-open');
|
|
+ cmd = process.pkg
|
|
+ ? path.join(path.dirname(process.execPath), 'xdg-open-402')
|
|
+ : path.join(__dirname, 'xdg-open');
|
|
}
|
|
|
|
if (appArgs.length > 0) {
|