Skip to content

Commit

Permalink
[TIMOB-13549] Fixed bug with the Android SDK path not being stored ba…
Browse files Browse the repository at this point in the history
…ck in the Android detection results object after being converted to an absolute path.
  • Loading branch information
cb1kenobi committed May 5, 2013
1 parent e020e3f commit 5aa9fda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/android.js
Expand Up @@ -31,7 +31,7 @@ exports.detect = function (finished, sdkPath, ndkPath) {
avds: []
};

sdkPath && (sdkPath = afs.resolvePath(sdkPath));
sdkPath && (sdkPath = result.sdkPath = afs.resolvePath(sdkPath));

if (!sdkPath || !afs.exists(sdkPath)) {
sdkPath = result.sdkPath = findSDK();
Expand Down

0 comments on commit 5aa9fda

Please sign in to comment.