From 99deb4f5163da3477e6b0138783a19ab93a183ab Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Wed, 19 Nov 2014 20:20:46 -0800 Subject: [PATCH] Fix 'lime create openfl' --- tools/CommandLineTools.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/CommandLineTools.hx b/tools/CommandLineTools.hx index 59ca0fc65..c1d5847d7 100644 --- a/tools/CommandLineTools.hx +++ b/tools/CommandLineTools.hx @@ -632,7 +632,7 @@ class CommandLineTools { for (samplePath in project.samplePaths) { - if (FileSystem.exists (PathHelper.combine (samplePath, sampleName))) { + if (FileSystem.exists (PathHelper.combine (samplePath, projectName))) { sampleExists = true;