From aff6e45326f184d03a26f490617fbeb738f6a0b0 Mon Sep 17 00:00:00 2001 From: Ali Ali <47680736+ali-ahsan-ali@users.noreply.github.com> Date: Sat, 26 Oct 2024 01:38:56 +1100 Subject: [PATCH 1/2] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 226001ec..32d4b004 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,9 @@ Toucan is a markdown-based Static Site Generator (SSG) written in Swift. +## Prerequisite +Ensure you have `Swift` installed. For instructions check [how to install swift](https://www.swift.org/install/) + ## Install Clone or download the repository & run: @@ -10,7 +13,7 @@ Clone or download the repository & run: # clone the repository & install toucan git clone https://github.com/toucansites/toucan.git cd toucan -make install +sudo make install # verify installation which toucan ``` From 496d83a5f8c225b49fc1b2cf427eeebbd5e15d12 Mon Sep 17 00:00:00 2001 From: Ali Ali <47680736+ali-ahsan-ali@users.noreply.github.com> Date: Sat, 26 Oct 2024 14:05:23 +1100 Subject: [PATCH 2/2] Update README.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Tibor Bödecs --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 32d4b004..f809eb95 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,9 @@ Clone or download the repository & run: # clone the repository & install toucan git clone https://github.com/toucansites/toucan.git cd toucan -sudo make install +make install +# alternatively, if you encounter permission errors: +# sudo !! # verify installation which toucan ```