get process output during data file install

This commit is contained in:
SpikeHD 2022-05-07 21:54:50 -07:00
parent 2ded1f69ae
commit 98762a310e

View File

@ -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