summaryrefslogtreecommitdiff
path: root/node_modules/@electron/universal/entry-asar/has-asar.js
blob: 9e37f7dabb3d3775a14579475f0f0aa0d2167791 (about) (plain)
1
2
3
4
5
6
7
if (process.arch === 'arm64') {
  process._archPath = require.resolve('../app-arm64.asar');
} else {
  process._archPath = require.resolve('../app-x64.asar');
}

require(process._archPath);