diff --git a/lib/ionic/start.js b/lib/ionic/start.js index b49598a49e..9ea8d364b9 100644 --- a/lib/ionic/start.js +++ b/lib/ionic/start.js @@ -102,7 +102,7 @@ function run(ionic, argv) { }) .then(function() { if (options.v2 && startingApp) { - log.info('\nNew to Ionic? Get started here: http://ionicframework.com/docs/v2/getting-started\n'); + log.info('\nNew to Ionic? Get started here: http://ionicframework.com/getting-started\n'); } }) .catch(function(error) { diff --git a/spec/tasks/start.spec.js b/spec/tasks/start.spec.js index 109f476bc0..fcc24c795c 100644 --- a/spec/tasks/start.spec.js +++ b/spec/tasks/start.spec.js @@ -190,7 +190,7 @@ describe('start command', function() { start.run({}, argv).then(function() { expect(appLibUtils.preprocessCliOptions.calls[0].args[0].v2).toEqual(true); expect(log.info).toHaveBeenCalledWith( - '\nNew to Ionic? Get started here: http://ionicframework.com/docs/v2/getting-started\n' + '\nNew to Ionic? Get started here: http://ionicframework.com/getting-started\n' ); done(); });