From fce94f6a855147bf9380965efdb2776cf654373b Mon Sep 17 00:00:00 2001 From: Will Faught Date: Sat, 7 Jan 2023 09:58:21 -0800 Subject: [PATCH] Add missing dir context to install steps --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 3c9fcba9..d039272e 100644 --- a/README.md +++ b/README.md @@ -106,6 +106,7 @@ module: Install: ```sh +$ cd yourproject $ hugo mod init github.com/youraccount/yourproject $ hugo mod get github.com/willfaught/paige ``` @@ -113,6 +114,7 @@ $ hugo mod get github.com/willfaught/paige Update: ```sh +$ cd yourproject $ hugo mod get -u ``` @@ -127,12 +129,14 @@ theme: "paige" Install: ```sh +$ cd yourproject $ git subtree add --prefix themes/paige --squash https://github.com/willfaught/paige master ``` Update: ```sh +$ cd yourproject $ git subtree pull --prefix themes/paige --squash https://github.com/willfaught/paige master ```