Skip to content

Commit

Permalink
fix: correct link update
Browse files Browse the repository at this point in the history
  • Loading branch information
joaosouz4dev committed Sep 30, 2020
1 parent cac8cbb commit 599c562
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/controllers/initializer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,12 @@ export async function create(
const mergedOptions = { ...defaultOptions, ...options };

if (!mergedOptions.disableWelcome) {
console.log(`\n
console.log(`
▐█ ██ █░▐█▀▀▀░▐█ ▄█▀▀█▄ ▄█▀▀█▄ ▐██ ██▌ ▓█▀▀▀░
█▌▐██▄▓█ ▐█▄▄▄ ▐█ ▐█ █▒ ▐█▄▐█▀▌ ▐▌█▌ ▓█▄▄▄
▐██ ▐██░ ▐█ ▐█ ▐█▄ ▄▀ █▌ ▐█ ▐█ █▓█ █▌ ██
▀▀ ▀▀ ▀▀▀▀▀░▐▀▀▀▀▀ ▀▀▀▀ ▀▀▀▀ ▐▀ ▀ ▀▀ ▀▀▀▀▀
\n
▄▄░ ▄ ▄▄▄▄▄▄▄▄▄▄▄▄▄ ██ ▄▄ ▄▄▄▄ ░
░██▄ ██ ███▀▀▀▀▀▀▀▀█▌ ███▌ ██▄ ▄▄█▀▀▀▀▀▀█▄ ▓█▄ ▄█░
Expand All @@ -103,8 +102,7 @@ export async function create(
▓████ ███ ██ ▀██▄██▄ █▌ ██ ▓█▌ ▀█░ ██░
▀██ ███ █▌ ██ ▀███▄ ▀█▄ ▄▄█▀ ▓█▌ ██░
▀ ▀███████████▌ ██ ░██▄ ▀▀███▀▀░ ▀█▌ ▓█░
▀░
\n`);
▀░ \n`);
}
// Check for updates if needed
if (!updatesChecked && mergedOptions.updatesLog) {
Expand Down Expand Up @@ -381,7 +379,6 @@ function checkVenomVersion(spinnies) {
if (!upToDate(version, latest)) {
logUpdateAvailable(version, latest);
}

spinnies.succeed('venom-version-spinner', { text: 'Checking for updates' });
});
}
Expand All @@ -401,7 +398,7 @@ function logUpdateAvailable(current: string, latest: string) {
console.log(boxen(newVersionLog, { padding: 1 }));
console.log(
`For more info visit: ${chalk.underline(
'https://github.com/orkestral/venom/blob/master/UPDATES.md'
'https://github.com/orkestral/venom/blob/master/Update.md'
)}\n`
);
}

0 comments on commit 599c562

Please sign in to comment.