We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ghost run
1 parent 7d53674 commit 7abe68bCopy full SHA for 7abe68b
bin/ghost
@@ -4,8 +4,10 @@
4
// provide a title to the process
5
process.title = 'ghost';
6
7
-// Check for CLI updates
8
-require('../lib/utils/update-notifier');
+// Check for CLI updates if not running `ghost run`
+if (process.argv.length > 2 && process.argv[2] !== 'run') {
9
+ require('../lib/utils/update-notifier');
10
+}
11
12
const yargs = require('yargs');
13
const bootstrap = require('../lib/bootstrap');
0 commit comments