From c64d81cd84c1c2b43f354d688ebb4bfb902f5a87 Mon Sep 17 00:00:00 2001 From: Philip Peterson Date: Thu, 24 Apr 2025 20:12:06 -0700 Subject: [PATCH] wip --- bin/mk-snapshot.js | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/bin/mk-snapshot.js b/bin/mk-snapshot.js index bec14092..2b5faefc 100644 --- a/bin/mk-snapshot.js +++ b/bin/mk-snapshot.js @@ -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' : '')),