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 dlObject ={
path: dlBundle.filename,
url: dlBundle.url,
extract: true,
delete_after_extract: true,
progress: true,
}
const data = {
install_steps: {
http_downloads: [
{
path: dlBundle.filename,
url: dlBundle.url,
extract: true,
delete_after_extract: true,
progress: true,
}
]
}
install_steps: {
http_downloads: [
dlObject
]
},
update_steps: {
http_downloads: [
dlObject
]
},
}
return data