From ff8d658a2ab7669289be4f742d7a5297c483e99c Mon Sep 17 00:00:00 2001 From: Chris Zarate Date: Tue, 13 Dec 2022 00:04:28 -0500 Subject: [PATCH] Improve upgrade message (#189) --- cmd/upgrade.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/upgrade.ts b/cmd/upgrade.ts index 01720b37..eb6f62a0 100644 --- a/cmd/upgrade.ts +++ b/cmd/upgrade.ts @@ -27,11 +27,11 @@ export async function upgradeCommand() { const newVersion = new TextDecoder().decode(rawVersion).trim(); if (newVersion === version) { console.log( - `Nope. I hate to tell you this, but it looks like we're still running ${newVersion} This was a bit of a futile exercise. Let's try again soon some time.`, + `Nope. I hate to tell you this, but it looks like we're still running ${newVersion}. This was a bit of a futile exercise. Let's try again soon some time.`, ); } else { console.log( - `Congrats, we've upgraded you from ${version} to ${newVersion}. Seems like quite bump, enjoy! https://silverbullet.md/changelog/ may give you more hints on what's new.`, + `Congrats, we've upgraded you from ${version} to ${newVersion}. Seems like quite a bump, enjoy! https://silverbullet.md/CHANGELOG may give you more hints on what's new.`, ); } }