Update beforeBuild.js

This commit is contained in:
Jan-Otto Kröpke 2023-06-30 09:05:34 +02:00 committed by GitHub
parent 217e17adb6
commit 390062ba5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions

View File

@ -4,7 +4,6 @@ const archMap = {
}
module.exports = async (buildContext) => {
console.log(buildContext)
if (buildContext.platform.name !== "linux") return true
if (buildContext.arch in archMap) {
@ -14,7 +13,5 @@ module.exports = async (buildContext) => {
process.env.CC = "gcc"
process.env.CXX = "g++"
}
console.log(process.env.CXX)
return true
}