We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f2c45d commit 4aa05a5Copy full SHA for 4aa05a5
src/bundle.ts
@@ -286,7 +286,10 @@ async function copyHarmonyBundle(outputFolder: string) {
286
} catch (error) {
287
await fs.chmod(harmonyRawPath, 0o755);
288
}
289
+ await fs.remove(path.join(harmonyRawPath, 'update.json'));
290
+ await fs.copy('update.json', path.join(harmonyRawPath, 'update.json'));
291
await fs.ensureDir(outputFolder);
292
+
293
const files = await fs.readdir(harmonyRawPath);
294
for (const file of files) {
295
if (file !== 'update.json' && file !== 'meta.json') {
0 commit comments