Skip to content

Commit

Permalink
updates fix for missing font
Browse files Browse the repository at this point in the history
  • Loading branch information
manishkumr committed Jun 4, 2021
1 parent 29675d5 commit 5bfbd00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -512,21 +512,21 @@ const options = yargs
clear();
console.log(
chalk.yellow(
figlet.textSync('---------------------', { font: 'big', horizontalLayout: 'full' }),
figlet.textSync('---------------------', { font: 'Big', horizontalLayout: 'full' }),
),
);

console.log(
chalk.yellow(
figlet.textSync('TRACK-FA-XNAT-CLIENT', { font: 'big', horizontalLayout: 'full' }),
figlet.textSync('TRACK-FA-XNAT-CLIENT', { font: 'Big', horizontalLayout: 'full' }),
),
);
console.log(
chalk.green('A XNAT Client to upload and download Post-Processed or Processed data for TRACK-FA Project'),
);
console.log(
chalk.yellow(
figlet.textSync('---------------------', { font: 'big', horizontalLayout: 'full' }),
figlet.textSync('---------------------', { font: 'Big', horizontalLayout: 'full' }),
),
);
console.log(
Expand Down

0 comments on commit 5bfbd00

Please sign in to comment.