1
0
Fork 0

backup to ignore firmware

master
Gordon Williams 2022-03-17 10:14:25 +00:00
parent 7c4032d6fb
commit 13c18e76a6
1 changed files with 4 additions and 0 deletions

View File

@ -22,6 +22,10 @@ function bangleDownload() {
var promise = Promise.resolve();
// Normal files
normalFiles.forEach((filename,n) => {
if (filename==".firmware") {
console.log("Ignoring .firmware file");
return;
}
promise = promise.then(() => {
Progress.hide({sticky: true});
var percent = n/fileCount;