diff --git a/bin/cli-setup b/bin/cli-setup index 7f0d40085..185b04f01 100755 --- a/bin/cli-setup +++ b/bin/cli-setup @@ -35,7 +35,17 @@ program const performSetup = () => { if (program.defaults) { - return SettingsService.init(); + return SettingsService + .init() + .then(() => { + console.log('Settings created.'); + console.log('\nTalk is now installed!'); + util.shutdown(); + }) + .catch((err) => { + console.error(err); + util.shutdown(1); + }); } // Get the current settings, we are expecing an error here.