mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-19 13:47:52 +00:00
b5c4348de1
Change-type: patch Signed-off-by: Paulo Castro <paulo@balena.io>
17 lines
635 B
Diff
17 lines
635 B
Diff
diff --git a/node_modules/qqjs/lib/exec.js b/node_modules/qqjs/lib/exec.js
|
|
index 835f565..84bb5be 100644
|
|
--- a/node_modules/qqjs/lib/exec.js
|
|
+++ b/node_modules/qqjs/lib/exec.js
|
|
@@ -5,6 +5,11 @@ const m = {
|
|
m: {},
|
|
get execa() { return this.m.execa = this.m.execa || require('execa'); },
|
|
};
|
|
+const { isCygwin, isMinGW, isMSYS2 } = require('execa');
|
|
+exports.isCygwin = isCygwin;
|
|
+exports.isMinGW = isMinGW;
|
|
+exports.isMSYS2 = isMSYS2;
|
|
+console.log(`qqjs exec.js MSYSTEM=${process.env.MSYSTEM} OSTYPE=${process.env.OSTYPE} isMSYS2=${isMSYS2} isMingGW=${isMinGW} isCygwin=${isCygwin}`);
|
|
/**
|
|
* easy access to process.env
|
|
*/
|