Skip to content

Commit f834cca

Browse files
jgw96jthoms1
authored andcommitted
fix(start): getting started url (#1738)
1 parent 044171c commit f834cca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/ionic/start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ function run(ionic, argv) {
102102
})
103103
.then(function() {
104104
if (options.v2 && startingApp) {
105-
log.info('\nNew to Ionic? Get started here: http://ionicframework.com/docs/v2/getting-started\n');
105+
log.info('\nNew to Ionic? Get started here: http://ionicframework.com/getting-started\n');
106106
}
107107
})
108108
.catch(function(error) {

spec/tasks/start.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ describe('start command', function() {
190190
start.run({}, argv).then(function() {
191191
expect(appLibUtils.preprocessCliOptions.calls[0].args[0].v2).toEqual(true);
192192
expect(log.info).toHaveBeenCalledWith(
193-
'\nNew to Ionic? Get started here: http://ionicframework.com/docs/v2/getting-started\n'
193+
'\nNew to Ionic? Get started here: http://ionicframework.com/getting-started\n'
194194
);
195195
done();
196196
});

0 commit comments

Comments
 (0)