From 98762a310e1364ea543f2a9a280c5f5164cc8c7f Mon Sep 17 00:00:00 2001 From: SpikeHD Date: Sat, 7 May 2022 21:54:50 -0700 Subject: [PATCH] get process output during data file install --- resources/js/gcdownloader.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/gcdownloader.js b/resources/js/gcdownloader.js index 999f07f..1320084 100644 --- a/resources/js/gcdownloader.js +++ b/resources/js/gcdownloader.js @@ -73,14 +73,14 @@ async function downloadDataFiles(branch) { for (const o of dataList) { const folder = 'data' const e = await Neutralino.os.execCommand(`powershell Invoke-WebRequest -Uri ${o.url} -OutFile "${serverFolderFixed}\\${folder}\\${o.filename}"`) - debug.log(e.stdIn) + debug.log(e) } // Download key files for (const o of keyList) { const folder = 'keys' const e = await Neutralino.os.execCommand(`powershell Invoke-WebRequest -Uri ${o.url} -OutFile "${serverFolderFixed}\\${folder}\\${o.filename}"`) - debug.log(e.stdIn) + debug.log(e) } // Fix buttons