Skip to content
This repository has been archived by the owner on Jul 5, 2022. It is now read-only.

Commit

Permalink
get process output during data file install
Browse files Browse the repository at this point in the history
  • Loading branch information
SpikeHD committed May 8, 2022
1 parent 2ded1f6 commit 98762a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/js/gcdownloader.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 98762a3

Please sign in to comment.