From 1a92bbe709e48fe6342141e9d8b27b4ec8aea8f3 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Fri, 3 Mar 2017 14:22:22 -0800 Subject: [PATCH] Prefer project.xml over project.nmml --- tools/CommandLineTools.hx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/CommandLineTools.hx b/tools/CommandLineTools.hx index 5bdf34654..1fa3d4f0b 100644 --- a/tools/CommandLineTools.hx +++ b/tools/CommandLineTools.hx @@ -973,14 +973,14 @@ class CommandLineTools { return PathHelper.combine (path, "project.lime"); - } else if (FileSystem.exists (PathHelper.combine (path, "project.nmml"))) { - - return PathHelper.combine (path, "project.nmml"); - } else if (FileSystem.exists (PathHelper.combine (path, "project.xml"))) { return PathHelper.combine (path, "project.xml"); + } else if (FileSystem.exists (PathHelper.combine (path, "project.nmml"))) { + + return PathHelper.combine (path, "project.nmml"); + } else { var files = FileSystem.readDirectory (path);