@devicecloud.dev/dcd 3.3.6 → 3.3.7
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.
- package/dist/commands/cloud.js +4 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/commands/cloud.js
CHANGED
|
@@ -270,6 +270,10 @@ class Cloud extends core_1.Command {
|
|
|
270
270
|
this.log('Run triggered, you can access the results at:');
|
|
271
271
|
const url = `https://console.devicecloud.dev/results?upload=${results[0].test_upload_id}&result=${results[0].id}`;
|
|
272
272
|
core_1.ux.url(url, url);
|
|
273
|
+
this.log(`\n`);
|
|
274
|
+
this.log(`Your upload ID is: ${results[0].test_upload_id}`);
|
|
275
|
+
this.log(`Poll upload status using: dcd status --api-key ... --upload-id ${results[0].test_upload_id}`);
|
|
276
|
+
this.log(`\n`);
|
|
273
277
|
if (async) {
|
|
274
278
|
this.log('Not waiting for results as async flag is set to true');
|
|
275
279
|
return;
|
package/oclif.manifest.json
CHANGED