Browse Source

Projucer: allow a non-existing target file

v7.0.9
Anthony Nicholls 2 years ago
parent
commit
6faa87d8f3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      extras/Projucer/Source/Application/jucer_CommandLine.cpp

+ 1
- 1
extras/Projucer/Source/Application/jucer_CommandLine.cpp 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;


Loading…
Cancel
Save