Fix Windows target arch in native build

This commit is contained in:
J. Ryan Stinnett
2021-06-25 13:10:08 +01:00
parent 6e76d658b1
commit b8cb53e11b
2 changed files with 6 additions and 2 deletions

View File

@@ -96,6 +96,10 @@ module.exports = class HakEnv {
return this.target.platform === 'linux';
}
getTargetArch() {
return this.target.arch;
}
isHost() {
return isHostId(this.target.id);
}