Skip to content

Commit

Permalink
switched to path join instead of string concatenation
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekBurch committed Feb 15, 2013
1 parent e2bfa07 commit b5f1cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/native/native-android.js
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit b5f1cb4

Please sign in to comment.