From 6faa87d8f3bb74d68e39f9cbd7e99636955e149a Mon Sep 17 00:00:00 2001 From: Anthony Nicholls Date: Tue, 21 Mar 2023 09:42:15 +0000 Subject: [PATCH] Projucer: allow a non-existing target file --- extras/Projucer/Source/Application/jucer_CommandLine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extras/Projucer/Source/Application/jucer_CommandLine.cpp b/extras/Projucer/Source/Application/jucer_CommandLine.cpp index 39f09e545f..b100b6f43a 100644 --- a/extras/Projucer/Source/Application/jucer_CommandLine.cpp +++ b/extras/Projucer/Source/Application/jucer_CommandLine.cpp @@ -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;