Browse Source

FIX: build after autoInstall

pull/4430/head
Anson Tsao 8 years ago
parent
commit
301b3ad5a7
1 changed files with 1 additions and 1 deletions
  1. 2
      tasks/install.js

2
tasks/install.js

@ -419,7 +419,7 @@ gulp.task('create install files', function(callback) {
gulp.task('clean up install', function() { gulp.task('clean up install', function() {
// Completion Message // Completion Message
if(installFolder) {
if(installFolder && !install.shouldAutoInstall()) {
console.log('\n Setup Complete! \n Installing Peer Dependencies. \x1b[0;31mPlease refrain from ctrl + c\x1b[0m... \n After completion navigate to \x1b[92m' + answers.semanticRoot + '\x1b[0m and run "\x1b[92mgulp build\x1b[0m" to build'); console.log('\n Setup Complete! \n Installing Peer Dependencies. \x1b[0;31mPlease refrain from ctrl + c\x1b[0m... \n After completion navigate to \x1b[92m' + answers.semanticRoot + '\x1b[0m and run "\x1b[92mgulp build\x1b[0m" to build');
process.exit(0); process.exit(0);
} }

Loading…
Cancel
Save