mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-12 16:42:05 +00:00
Changed Flex SDK links to Apache Flex
Fixed Flex SDK not required on commandline when Flex compilation is disabled
This commit is contained in:
@@ -3498,8 +3498,8 @@ public class CommandLineArgumentParser {
|
||||
private static void parseImportScript(Stack<String> args) {
|
||||
|
||||
String flexLocation = Configuration.flexSdkLocation.get();
|
||||
if (flexLocation.isEmpty() || (!new File(flexLocation).exists())) {
|
||||
System.err.println("Flex SDK path not set");
|
||||
if (Configuration.useFlexAs3Compiler.get() && (flexLocation.isEmpty() || (!new File(flexLocation).exists()))) {
|
||||
System.err.println("Flex AS3 compiler enabled but Flex SDK path not set");
|
||||
System.exit(1);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user