From ed69971f2583ce6c937c2e38da3d8639da657165 Mon Sep 17 00:00:00 2001 From: Szymon Lorenz Date: Fri, 15 Sep 2023 18:19:45 +1000 Subject: [PATCH 1/2] Update readme --- README.md | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c7aed37fe..e6a41f91c 100644 --- a/README.md +++ b/README.md @@ -199,8 +199,8 @@ Not all of these versions are tested on regular basis though, compatibility repo ## Getting started Tokamak relies on [`carton`](https://carton.dev) as a primary build tool. As a part of these steps -you'll install `carton` via [Homebrew](https://brew.sh/) on macOS (unfortunately you'll have to build -it manually on Linux). Assuming you already have Homebrew installed, you can create a new Tokamak +you'll install `carton` via [Homebrew](https://brew.sh/) on macOS. +Assuming you already have Homebrew installed, you can create a new Tokamak app by following these steps: 1. Install `carton`: @@ -211,6 +211,13 @@ brew install swiftwasm/tap/carton If you had `carton` installed before this, make sure you have version 0.15.0 or greater: + +or run [carton-install.sh](https://github.com/swiftwasm/carton) for Linux + +``` +curl -sSL https://github.com/swiftwasm/carton/blob/main/carton-install.sh | bash +``` + ``` carton --version ``` From d4c4b4b948c2bee65152b8a483fa054169ef9773 Mon Sep 17 00:00:00 2001 From: Szymon Lorenz Date: Fri, 15 Sep 2023 19:02:03 +1000 Subject: [PATCH 2/2] point to raw --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6a41f91c..5c91f12d0 100644 --- a/README.md +++ b/README.md @@ -215,7 +215,7 @@ If you had `carton` installed before this, make sure you have version 0.15.0 or or run [carton-install.sh](https://github.com/swiftwasm/carton) for Linux ``` -curl -sSL https://github.com/swiftwasm/carton/blob/main/carton-install.sh | bash +curl -sSL https://raw.githubusercontent.com/swiftwasm/carton/blob/main/carton-install.sh | bash ``` ```