mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
wip
This commit is contained in:
parent
83f2d2fca6
commit
c64d81cd84
1 changed files with 3 additions and 6 deletions
9
bin/mk-snapshot.js
vendored
9
bin/mk-snapshot.js
vendored
|
|
@ -50,16 +50,13 @@ async function main() {
|
|||
|
||||
console.log(`Generating startup blob in "${outputBlobPath}"`);
|
||||
console.log(childProcess.execSync(
|
||||
'ls',
|
||||
[path.resolve(__dirname, '..', 'node_modules')]
|
||||
'ls ' + path.resolve(__dirname, '..', 'node_modules')
|
||||
).toString());
|
||||
console.log(childProcess.execSync(
|
||||
'ls',
|
||||
[path.resolve(__dirname, '..', 'node_modules', 'electron-mksnapshot')]
|
||||
'ls ' + path.resolve(__dirname, '..', 'node_modules', 'electron-mksnapshot')
|
||||
).toString());
|
||||
console.log(childProcess.execSync(
|
||||
'ls',
|
||||
[path.resolve(__dirname, '..', 'node_modules', 'electron-mksnapshot', 'bin')]
|
||||
'ls ' + path.resolve(__dirname, '..', 'node_modules', 'electron-mksnapshot', 'bin')
|
||||
).toString());
|
||||
const res = childProcess.execFileSync(
|
||||
path.resolve(__dirname, '..', 'node_modules', 'electron-mksnapshot', 'bin', 'mksnapshot' + (process.platform === 'win32' ? '.cmd' : '')),
|
||||
|
|
|
|||
Loading…
Reference in a new issue