From 0cd511b9844a18a0b421337b342c756e54b117d9 Mon Sep 17 00:00:00 2001 From: Maxime Desroches Date: Sun, 10 Aug 2025 15:52:45 -0700 Subject: [PATCH] ref --- selfdrive/ui/installer/installer.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/selfdrive/ui/installer/installer.cc b/selfdrive/ui/installer/installer.cc index 96089fffa7..38636d2e36 100644 --- a/selfdrive/ui/installer/installer.cc +++ b/selfdrive/ui/installer/installer.cc @@ -88,6 +88,7 @@ int cachedFetch(const std::string &cache) { renderProgress(10); if (util::file_exists(NO_FETCH_FLAG)) { + run(util::string_format("cd %s && git update-ref refs/remotes/origin/%s refs/remotes/origin/release3-staging", TMP_INSTALL_PATH, BRANCH_STR.c_str()).c_str()); return 0; } else { return executeGitCommand(util::string_format("cd %s && git fetch --progress origin %s 2>&1", TMP_INSTALL_PATH, BRANCH_STR.c_str()));