1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Use getSiblingFile in more places

This commit is contained in:
Tom Poole 2024-11-20 10:10:35 +00:00
parent 5d5fdaf008
commit 5737c42ccf
7 changed files with 17 additions and 17 deletions

View file

@ -507,7 +507,7 @@ Array<File> PIPGenerator::replaceRelativeIncludesAndGetFilesToMove()
if (path.startsWith ("<") && path.endsWith (">"))
continue;
auto file = pipFile.getParentDirectory().getChildFile (path);
auto file = pipFile.getSiblingFile (path);
files.add (file);
line = line.replace (path, file.getFileName());