Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Android preferences root path on Windows #558

Merged
merged 15 commits into from
Nov 26, 2020
Prev Previous commit
Next Next commit
Remove dead link comment
  • Loading branch information
jpkleemans committed Nov 24, 2020
commit fb7a619d12e9ff1d8da83ef386c299d0cba99195
1 change: 0 additions & 1 deletion lib/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -848,7 +848,6 @@ function toAvdLocaleArgs (language, country) {
* @returns {?string} The full path to the folder or `null` if the folder cannot be found
*/
async function getAndroidPrefsRoot () {
// https://gerrit.pixelexperience.org/plugins/gitiles/development/+/5c11852110eeb03dc5a69111354b383f98d15336/tools/androidprefs/src/com/android/prefs/AndroidLocation.java
let location = process.env.ANDROID_EMULATOR_HOME;
jpkleemans marked this conversation as resolved.
Show resolved Hide resolved
if (location && !await fs.exists(location)) {
jpkleemans marked this conversation as resolved.
Show resolved Hide resolved
log.debug(`Value of $ANDROID_EMULATOR_HOME '${location}' does not exist`);
Expand Down