* fix: no asar support (#4), renamed directories (#5) and check if we need to duplicate asar's (#1) * Add missing newline
8 lines
180 B
JavaScript
8 lines
180 B
JavaScript
if (process.arch === 'arm64') {
|
|
process._archPath = require.resolve('../app-arm64');
|
|
} else {
|
|
process._archPath = require.resolve('../app-x64');
|
|
}
|
|
|
|
require(process._archPath);
|