Skip to content

Commit

Permalink
Fix issue where .gbsres for every asset was being generated on projec…
Browse files Browse the repository at this point in the history
…t save since merge of plugin manager branch
  • Loading branch information
chrismaltby committed Oct 17, 2024
1 parent 588ff67 commit bf97fa5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib/project/loadResourceChecksums.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,9 @@ export const loadProjectResourceChecksums = async (
projectPath: string
): Promise<Record<string, string>> => {
const projectRoot = path.dirname(projectPath);
const projectResourcesRoot = path.join(projectRoot, "project");

const projectResources = await globAsync(
path.join(projectResourcesRoot, "**/*.gbsres")
path.join(projectRoot, "**/*.gbsres")
);

const resources = await promiseLimit(
Expand Down

0 comments on commit bf97fa5

Please sign in to comment.