From b5f1cb4ecdd9f1025c554609f18b084bfd50ef5a Mon Sep 17 00:00:00 2001 From: DerekBurch Date: Fri, 15 Feb 2013 10:52:31 -0800 Subject: [PATCH] switched to path join instead of string concatenation --- build/native/native-android.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/native/native-android.js b/build/native/native-android.js index 48d860e2..794606f5 100644 --- a/build/native/native-android.js +++ b/build/native/native-android.js @@ -182,7 +182,7 @@ function makeAndroidProject(project, namespace, activity, title, appID, "--library", "../../TeaLeaf" ], {}, f()); }, function () { - fs.appendFile( destDir + '/project.properties', 'out.dexed.absolute.dir=../.dex/\n',f()); + fs.appendFile( path.join(destDir, 'project.properties'), 'out.dexed.absolute.dir=../.dex/\n',f()); }, function () { updateManifest(project, namespace, activity, title, appID, shortName, version, debug, destDir, servicesURL, metadata, studioName, f.waitPlain()); updateActivity(project, namespace, activity, destDir, f.waitPlain());