download dependencies when file size is zero
This commit is contained in:
parent
5e698a8312
commit
81d050d596
@ -1,8 +1,8 @@
|
|||||||
import {
|
import {
|
||||||
AddToDownloadList,
|
AddToDownloadList,
|
||||||
DeleteFile,
|
DeleteFile,
|
||||||
FileExists,
|
|
||||||
ListDirFiles,
|
ListDirFiles,
|
||||||
|
ReadFileInfo,
|
||||||
ReadJson,
|
ReadJson,
|
||||||
SaveJson,
|
SaveJson,
|
||||||
UpdateApp
|
UpdateApp
|
||||||
@ -175,9 +175,11 @@ export function isSystemLightMode() {
|
|||||||
|
|
||||||
export function downloadProgramFiles() {
|
export function downloadProgramFiles() {
|
||||||
manifest.programFiles.forEach(({ url, path }) => {
|
manifest.programFiles.forEach(({ url, path }) => {
|
||||||
FileExists(path).then(exists => {
|
ReadFileInfo(path).then(info => {
|
||||||
if (!exists && url)
|
if (info.size == 0 && url)
|
||||||
AddToDownloadList(path, url.replace('@master', '@v' + manifest.version));
|
AddToDownloadList(path, url.replace('@master', '@v' + manifest.version));
|
||||||
|
}).catch(() => {
|
||||||
|
AddToDownloadList(path, url.replace('@master', '@v' + manifest.version));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user