Skip to content

Commit

Permalink
Fix 4.27 Windows breakage introduced in #346
Browse files Browse the repository at this point in the history
  • Loading branch information
adamrehn committed Jun 26, 2024
1 parent 8eeaf3a commit 4e53548
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def extractComponent(inputDir, outputDir, component, description, items):
extractComponent(rootDir, outputDir, "DDC", "Derived Data Cache (DDC)", ddc)

# Extract debug symbols
symbolFiles = glob.glob(join(rootDir, "**", "*UnrealEditor*.pdb"), recursive=True)
symbolFiles = glob.glob(join(rootDir, "**", "*U*Editor*.pdb"), recursive=True)
extractComponent(rootDir, outputDir, "DebugSymbols", "debug symbols", symbolFiles)

# Extract template projects and samples
Expand Down

0 comments on commit 4e53548

Please sign in to comment.