blob: 5391363b4a92cadd6b31e3eda33f81cca42625bb (
about) (
plain)
1
2
3
4
5
6
7
|
if (process.arch === 'arm64') {
process._archPath = require.resolve('../app-arm64');
} else {
process._archPath = require.resolve('../app-x64');
}
require(process._archPath);
|