From 0739aca46444ce7f3b25106045a5337afc6d4fca Mon Sep 17 00:00:00 2001 From: Luke Berndt Date: Wed, 9 Nov 2022 22:09:33 -0500 Subject: [PATCH] change bart install path The recommended location for the spin binary is /usr/local/bin. it seems like bart should be installed in the same location. I think /usr/bin is reserved for system files. Signed-off-by: Luke Berndt --- docs/content/quickstart.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/quickstart.md b/docs/content/quickstart.md index f99ff07..20342c9 100644 --- a/docs/content/quickstart.md +++ b/docs/content/quickstart.md @@ -57,7 +57,7 @@ Creating content is made easy with the Bartholomew Command Line Interface (CLI) For the `bart` CLI, there are two options: - download the latest `bart` binary [release](https://github.com/fermyon/bartholomew/releases/), or -- clone and build `bart` from source (requires Rust), using the following commands (NOTE: `target/release/bart` will need to be installed to a user executable directory such as `/usr/bin/` to be run when built this way.): +- clone and build `bart` from source (requires Rust), using the following commands (NOTE: `target/release/bart` will need to be installed to a user executable directory such as `/usr/local/bin/` to be run when built this way.): ```bash $ git clone https://github.com/fermyon/bartholomew.git @@ -115,4 +115,4 @@ Running the `spin up` command from above (again) will render the post content at ![Post content rendered by Bartholomew based on the blog template](../static/image/docs/bart-new-post.png) -Next, let's explore how to [build custom templates for our new website](./templates.md). \ No newline at end of file +Next, let's explore how to [build custom templates for our new website](./templates.md).