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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "apify-cli",
3
- "version": "0.16.2-beta.3",
3
+ "version": "0.16.2-beta.4",
4
4
  "description": "Apify command-line interface helps you create, develop, build and run Apify actors, and manage the Apify cloud platform.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -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 || !flags.noPrompt) {
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
  ]);