Skip to content

Commit

Permalink
fix(start): getting started url (#1738)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgw96 authored and jthoms1 committed Nov 30, 2016
1 parent 044171c commit f834cca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/ionic/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion spec/tasks/start.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
});
Expand Down

0 comments on commit f834cca

Please sign in to comment.