Skip to content

Commit d4555aa

Browse files
authored
only exclude game/cache, not **/cache (#534)
1 parent e1559b8 commit d4555aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export class Configuration {
4242
}
4343

4444
private static excludeCompiledFilesConfig() {
45-
const renpyExclude = ["**/*.rpyc", "**/*.rpa", "**/*.rpymc", "**/cache/"];
45+
const renpyExclude = ["**/*.rpyc", "**/*.rpa", "**/*.rpymc", "game/cache/"];
4646
const config = workspace.getConfiguration("files");
4747
const workspaceExclude = config.inspect<WorkspaceConfiguration>("exclude");
4848
const exclude = { ...workspaceExclude?.workspaceValue };

0 commit comments

Comments
 (0)