1
0

Adjust update order
All checks were successful
Build and test project / build-and-test (push) Successful in 1m33s

This commit is contained in:
2026-03-21 20:58:41 +01:00
parent a9f721dd5b
commit d946602881

View File

@@ -113,6 +113,9 @@ export class NickelMenuInstaller {
const tgz = await this.getKoboRootTgz();
await device.writeFile(['.kobo', 'KoboRoot.tgz'], tgz);
progressFn('Updating Kobo eReader.conf...');
await this.updateEReaderConf(device);
if (features.length > 0) {
const files = await this.collectFiles(features, progressFn);
progressFn('Writing files to Kobo...');
@@ -125,9 +128,6 @@ export class NickelMenuInstaller {
await device.writeFile(pathArray, fileData);
progressFn(`Writing files to Kobo (${i + 1} of ${totalFiles})...`);
}
progressFn('Updating Kobo eReader.conf...');
await this.updateEReaderConf(device);
}
progressFn('Done.');