Skip to content

Commit

Permalink
fixed: users path issues
Browse files Browse the repository at this point in the history
  • Loading branch information
tenluap committed Apr 4, 2019
1 parent c11ac95 commit e04312f
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 13 deletions.
41 changes: 30 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"XML Validation"
],
"activationEvents": [
"workspaceContains:**/nativescript*"
"workspaceContains:*/nativescript*"
],
"extensionPack": [
"redhat.vscode-xml"
Expand Down
2 changes: 1 addition & 1 deletion src/emulator/platformRun.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export class platformRun extends emulatorPref implements IEmulator {
switch (platform) {
case 'android':
//@ts-ignore
var stdout = await util.runCmd(`${join(this.emulatorPath, '')} -list-avds`);
var stdout = await util.runCmd(`"${join(this.emulatorPath)}" -list-avds`);
//@ts-ignore
this.emulatorVersion = stdout.stdout.trim().split('\n')
this.pickVersion('android')
Expand Down

0 comments on commit e04312f

Please sign in to comment.