Skip to content

Commit 0b40d3c

Browse files
committed
Try fixing compilation for Linux github runners
1 parent 7ee75d0 commit 0b40d3c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

Source/PluginProcessor.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -450,6 +450,9 @@ bool PluginProcessor::initialiseFilesystem()
450450

451451
if(OSUtils::createJunction(linkPath.getFullPathName().replaceCharacters("/", "\\").toStdString(), targetPath.getFullPathName().toStdString())) return;
452452
#else
453+
if (linkPath.exists()) {
454+
linkPath.deleteRecursively();
455+
}
453456
if(targetPath.createSymbolicLink(linkPath, true)) return;
454457
#endif
455458

0 commit comments

Comments
 (0)