[innosetup] add innosetup installer packer

This commit is contained in:
2019-09-03 16:26:06 +03:00
parent 524695b155
commit 414099bd67
6 changed files with 121 additions and 7 deletions

6
haxetool/env.js Normal file → Executable file
View File

@@ -7,6 +7,10 @@ class Env {
process.env[key] = value;
}
static get(key) {
return process.env[key];
}
static addPath(value, key='PATH') {
if (!process.env[key]) {
process.env[key] = value;
@@ -17,4 +21,4 @@ class Env {
}
module.exports = Env;
module.exports = Env;