Skip to content

Commit e4b9393

Browse files
committed
Copy adjustments
1 parent 1e37f4f commit e4b9393

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

lib/cli.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -451,17 +451,17 @@ Cli.printNewsUpdates = function printNewsUpdates(skipNewsCheck) {
451451
return q.promise;
452452
}
453453

454-
process.stdout.write('+---------------------------------------------------------+\n'.green);
454+
process.stdout.write('\n+---------------------------------------------------------+\n');
455455

456-
var monthMessage = ['+ New Ionic Updates for ', monthNames[d.getMonth()], ' ', d.getFullYear(), '\n+\n'].join('').green;
456+
var monthMessage = ['+ Extra! Extra! Fresh Ionic updates for ', monthNames[d.getMonth()], ' ', d.getFullYear(), '\n+\n'].join('').bold;
457457
process.stdout.write(monthMessage);
458458

459459
for(var i = 0, j = messagesJson.list.length; i < j; i++) {
460460
var entry = messagesJson.list[i];
461461
var entryMessage = ['+ ', entry.name, '\n', '+ ', entry.action.yellow, '\n+\n'].join('');
462462
process.stdout.write(entryMessage);
463463
}
464-
process.stdout.write('+---------------------------------------------------------+\n'.green);
464+
process.stdout.write('+---------------------------------------------------------+\n\n');
465465
} catch(ex) {
466466
console.log('ex', ex.stack);
467467
q.reject('Error occurred in downloading the CLI messages:', ex)

lib/ionic/start.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ IonicTask.prototype.run = function run(ionic, argv) {
2828
}
2929

3030
if (argv._[1] == '.') {
31-
console.log('Please name your Ionic project something meaningful other than \'.\''.red);
31+
console.log('Please name your Ionic project something more meaningful than \'.\''.red);
3232
return
3333
}
3434

0 commit comments

Comments
 (0)