From 8e7a371c8818de3c3584de296c90d4d392dac732 Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Thu, 25 Jan 2024 16:45:37 +0100 Subject: [PATCH] Updated deno instructions --- website/Install/Deno.md | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/website/Install/Deno.md b/website/Install/Deno.md index f58b74a1..1d961cba 100644 --- a/website/Install/Deno.md +++ b/website/Install/Deno.md @@ -1,6 +1,10 @@ The SilverBullet is implemented using a JavaScript runtime called [Deno](https://deno.com/) which is a lot like node.js, just... you know, better. And we like better. -To run SilverBullet directly on your host system (so not in a [[Install/Docker]] container), you need to install Deno [first following these instructions](https://deno.land/manual/getting_started/installation). +To run SilverBullet directly on your host system (so not in a [[Install/Docker]] container), you need to [install Deno](https://docs.deno.com/runtime/manual/getting_started/installation) 1.39: + +```bash +$ curl -fsSL https://deno.land/install.sh | sh -s v1.39.4 +``` After having installed Deno, run: @@ -40,9 +44,3 @@ $ silverbullet upgrade ``` And restart SilverBullet. You should be good to go. - -Deno itself is also updated regularly, so be sure to let that self-upgrade as well: - -```shell -$ deno upgrade -```