backup to ignore firmware
parent
7c4032d6fb
commit
13c18e76a6
|
|
@ -22,6 +22,10 @@ function bangleDownload() {
|
||||||
var promise = Promise.resolve();
|
var promise = Promise.resolve();
|
||||||
// Normal files
|
// Normal files
|
||||||
normalFiles.forEach((filename,n) => {
|
normalFiles.forEach((filename,n) => {
|
||||||
|
if (filename==".firmware") {
|
||||||
|
console.log("Ignoring .firmware file");
|
||||||
|
return;
|
||||||
|
}
|
||||||
promise = promise.then(() => {
|
promise = promise.then(() => {
|
||||||
Progress.hide({sticky: true});
|
Progress.hide({sticky: true});
|
||||||
var percent = n/fileCount;
|
var percent = n/fileCount;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue