2020-03-02 17:13:16 +00:00
|
|
|
diff --git a/node_modules/opn/index.js b/node_modules/opn/index.js
|
2020-03-11 01:12:07 +00:00
|
|
|
index 13dcb66..16c5b2a 100644
|
2020-03-02 17:13:16 +00:00
|
|
|
--- a/node_modules/opn/index.js
|
|
|
|
+++ b/node_modules/opn/index.js
|
2020-03-11 01:12:07 +00:00
|
|
|
@@ -52,6 +52,9 @@ module.exports = function (target, opts) {
|
|
|
|
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');
|
|
|
|
}
|
2020-03-02 17:13:16 +00:00
|
|
|
|
2020-03-11 01:12:07 +00:00
|
|
|
if (appArgs.length > 0) {
|