Skip to content

Commit

Permalink
#56
Browse files Browse the repository at this point in the history
  • Loading branch information
simon300000 committed Apr 6, 2021
1 parent c139bd7 commit 1a0558a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@ function start({
}

function welcome() {
return `${'D'.repeat(process.stdout.columns - 1)}
return `${'D'.repeat(Math.max(10, process.stdout.columns - 1))}
Thank you for participating DD@Home,
Please read README.md for more information;
Type -h for command line options.
${'D'.repeat(process.stdout.columns - 1)}`
${'D'.repeat(Math.max(10, process.stdout.columns - 1))}`
}

0 comments on commit 1a0558a

Please sign in to comment.