update
This commit is contained in:
parent
8e2655b679
commit
0ce7ed02b6
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue