This commit is contained in:
Louis DeJardin 2012-04-18 16:33:56 -07:00
Родитель 1fbdc8d0db
Коммит 6778c0bd83
1 изменённых файлов: 6 добавлений и 6 удалений

Просмотреть файл

@ -141,7 +141,7 @@ log.table = function (level, data, transform) {
// prepare root cli command
var cli = new commander.Command();
var progressChars = ['-', '\\', '|', '/'];
var progressIndex = 0;
var activeProgressTimer;
@ -381,7 +381,7 @@ function rootHelpInformation() {
log.info(' _ _____ _ ___ ___'.cyan);
log.info(' /_\\ |_ / | | | _ \\ __|'.cyan);
log.info(' _ ___'.grey+'/ _ \\'.cyan+'__'.grey+'/ /| |_| | / _|'.cyan+'___ _ _'.grey);
log.info('(___ '.grey+'/_/ \\_\\/___|\\___/|_|_\\___|'.cyan+' _'.grey+'tm'.cyan+'__)'.grey);
log.info('(___ '.grey+'/_/ \\_\\/___|\\___/|_|_\\___|'.cyan+' _____)'.grey);
log.info(' (_______ _ _) _ ______ _)_ _ '.grey);
log.info(' (______________ _ ) (___ _ _)'.grey);
log.info('');
@ -397,16 +397,16 @@ function rootHelpInformation() {
helpCommands(this);
helpCategories(this);
helpOptions(this);
return '';
helpOptions(this);
return '';
}
function categoryHelpInformation() {
log.help(this.description());
helpCommands(this);
helpCategories(this);
helpOptions(this);
return '';
helpOptions(this);
return '';
}
function commandHelpInformation() {