From c679a677eb0ffd2a7a491a2e16c0b66637d23c9a Mon Sep 17 00:00:00 2001 From: Istvan Soos Date: Fri, 2 May 2025 10:29:55 +0200 Subject: [PATCH] Do not try to update local built files in regular frontend startup. --- app/lib/service/entrypoint/frontend.dart | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/app/lib/service/entrypoint/frontend.dart b/app/lib/service/entrypoint/frontend.dart index 3f56fcb5e5..339394c2f7 100644 --- a/app/lib/service/entrypoint/frontend.dart +++ b/app/lib/service/entrypoint/frontend.dart @@ -41,12 +41,11 @@ class DefaultCommand extends Command { } Future _main() async { - await updateLocalBuiltFilesIfNeeded(); - final appHandler = createAppHandler(); - if (envConfig.isRunningLocally) { + await updateLocalBuiltFilesIfNeeded(); await watchForResourceChanges(); } + final appHandler = createAppHandler(); await nameTracker.startTracking(); await announcementBackend.start(); await topPackages.start();