Skip to content

Commit

Permalink
fix: typo in android variable logs (#318)
Browse files Browse the repository at this point in the history
Co-authored-by: jcesarmobile <jcesarmobile@gmail.com>
  • Loading branch information
davidtingsu and jcesarmobile committed Oct 25, 2023
1 parent eb20983 commit 3d9251f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/android/utils/sdk/index.ts
Expand Up @@ -208,7 +208,7 @@ export async function resolveEmulatorHome(): Promise<string> {
) {
debug(
'Using $ANDROID_EMULATOR_HOME at %s',
process.env.$ANDROID_EMULATOR_HOME,
process.env.ANDROID_EMULATOR_HOME,
);
return process.env.ANDROID_EMULATOR_HOME;
}
Expand Down Expand Up @@ -237,7 +237,7 @@ export async function resolveAVDHome(): Promise<string> {
process.env.ANDROID_AVD_HOME &&
(await isDir(process.env.ANDROID_AVD_HOME))
) {
debug('Using $ANDROID_AVD_HOME at %s', process.env.$ANDROID_AVD_HOME);
debug('Using $ANDROID_AVD_HOME at %s', process.env.ANDROID_AVD_HOME);
return process.env.ANDROID_AVD_HOME;
}

Expand Down

0 comments on commit 3d9251f

Please sign in to comment.