diff --git a/src/resource-loader.ts b/src/resource-loader.ts index 5c80516c9..c01107704 100644 --- a/src/resource-loader.ts +++ b/src/resource-loader.ts @@ -324,7 +324,7 @@ function hasMissingWorkspaceScopes(hoisted: string, internal: string): boolean { if (!existsSync(internal)) return false try { for (const entry of readdirSync(internal, { withFileTypes: true })) { - if (entry.isDirectory() && entry.name.startsWith('@gsd') && + if (entry.isDirectory() && entry.name.startsWith('@sf-run') && !existsSync(join(hoisted, entry.name))) { return true }