Navigation Menu

Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Merge branch '0.3.0' into 318-second_passphrase_prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
willclarktech committed Nov 15, 2017
2 parents 22ce389 + 92c2e38 commit 56ecf41
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions src/index.js
Expand Up @@ -32,6 +32,11 @@ fs.readdirSync(commandsDir).forEach((command) => {
lisky.use(commandModule.default);
});

const copyright = `Lisky Copyright (C) 2017 Lisk Foundation
This program comes with ABSOLUTELY NO WARRANTY; for details type \`show w\`.
This is free software, and you are welcome to redistribute it under certain conditions; type \`show c\` for details.
`;

const logo = `
_ _ _
| (_)___| | ___ _
Expand All @@ -42,10 +47,10 @@ const logo = `
`;

const message = `
Running v${version}. Copyright (C) 2017 Lisk Foundation
Running v${version}.
Type \`help\` to get started.
`;
const intro = `${logo}${message}`;
const intro = `${copyright}${logo}${message}`;

lisky
.delimiter(`${name}>`)
Expand Down

0 comments on commit 56ecf41

Please sign in to comment.