eitri-cli 1.10.0-beta.5 → 1.10.0-beta.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -125,7 +125,7 @@ module.exports = class VegvisirService {
|
|
|
125
125
|
);
|
|
126
126
|
const fileContent = await readFile(workspaceGlobalPath, "utf8");
|
|
127
127
|
const workspace = JSON.parse(fileContent);
|
|
128
|
-
debug(`Construindo para o Workspace [${workspace.id}]`)
|
|
128
|
+
debug(`Construindo para o Workspace [${workspace.id} / Email: ${workspace.userEmail}]`)
|
|
129
129
|
workspace.id = validateUUID(this.workspaceId) ? this.workspaceId : workspace.id;
|
|
130
130
|
return workspace;
|
|
131
131
|
} catch (error) {
|
|
@@ -2,6 +2,7 @@ const util = require('util');
|
|
|
2
2
|
const inquirer = require("inquirer");
|
|
3
3
|
const GenericUtils = require('../../util/GenericUtils');
|
|
4
4
|
const exec = util.promisify(require("child_process").exec)
|
|
5
|
+
const debug = require('debug')('eitri:AndroidEmulatorService')
|
|
5
6
|
|
|
6
7
|
module.exports = class AndroidEmulatorService {
|
|
7
8
|
|
|
@@ -20,6 +21,7 @@ module.exports = class AndroidEmulatorService {
|
|
|
20
21
|
await exec(command)
|
|
21
22
|
console.log("ADB Instalado. Continuando...")
|
|
22
23
|
} catch (error) {
|
|
24
|
+
debug("checkHasInstalledAdb:", {message: e?.message || "", error})
|
|
23
25
|
throw new Error('"adb" não instalado. Saiba mais em https://developer.android.com/tools/adb')
|
|
24
26
|
}
|
|
25
27
|
}
|