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

Projucer: allow a non-existing target file

This commit is contained in:
Anthony Nicholls 2023-03-21 09:42:15 +00:00
parent 5e866b6156
commit 6faa87d8f3

View file

@ -645,7 +645,7 @@ namespace
{
args.checkMinNumArguments (3);
auto source = args[1].resolveAsExistingFile();
auto target = args[2].resolveAsExistingFile();
auto target = args[2].resolveAsFile();
MemoryOutputStream literal;
size_t dataSize = 0;