This commit is contained in:
srgooglo 2023-11-24 17:14:03 +01:00
parent 8e2655b679
commit 0ce7ed02b6
1 changed files with 19 additions and 11 deletions

View File

@ -33,18 +33,26 @@ module.exports = {
const dlBundle = global._.bundles[os_string] const dlBundle = global._.bundles[os_string]
const dlObject ={
path: dlBundle.filename,
url: dlBundle.url,
extract: true,
delete_after_extract: true,
progress: true,
}
const data = { const data = {
install_steps: { install_steps: {
http_downloads: [ http_downloads: [
{ dlObject
path: dlBundle.filename, ]
url: dlBundle.url, },
extract: true, update_steps: {
delete_after_extract: true, http_downloads: [
progress: true, dlObject
} ]
] },
}
} }
return data return data