apify-cli 0.16.2-beta.3 → 0.16.2-beta.4
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/package.json +1 -1
- package/src/commands/push.js +1 -1
package/package.json
CHANGED
package/src/commands/push.js
CHANGED
|
@@ -160,7 +160,7 @@ class PushCommand extends ApifyCommand {
|
|
|
160
160
|
outputs.link('Actor build detail', `https://console.apify.com${redirectUrlPart}/actors/${build.actId}#/builds/${build.buildNumber}`);
|
|
161
161
|
|
|
162
162
|
// Disable open browser on CI, or if user passed --no-prompt flag
|
|
163
|
-
if (isCI
|
|
163
|
+
if (!isCI && !flags.noPrompt) {
|
|
164
164
|
const shouldOpenBrowser = await inquirer.prompt([
|
|
165
165
|
{ type: 'confirm', name: 'continue', message: 'Do you want to open the actor detail in your browser?', default: true },
|
|
166
166
|
]);
|