This commit is contained in:
2022-09-30 05:39:11 +00:00
parent 41ee9463ae
commit 4687fa49bc
11418 changed files with 1312504 additions and 0 deletions

22
buildfiles/node_modules/app-builder-bin/index.js generated vendored Normal file
View File

@@ -0,0 +1,22 @@
"use strict"
const path = require("path")
function getPath() {
if (process.env.USE_SYSTEM_APP_BUILDER === "true") {
return "app-builder"
}
const platform = process.platform;
if (platform === "darwin") {
return path.join(__dirname, "mac", "app-builder")
}
else if (platform === "win32") {
return path.join(__dirname, "win", process.arch, "app-builder.exe")
}
else {
return path.join(__dirname, "linux", process.arch, "app-builder")
}
}
exports.appBuilderPath = getPath()