From 2f2b76c07459f3786ddc5be5e805a7962fe9708f Mon Sep 17 00:00:00 2001 From: Sainnhe Park Date: Wed, 15 Nov 2023 11:33:38 +0800 Subject: [PATCH] Fix installation path --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4d68f31..6b6eb4c 100644 --- a/README.md +++ b/README.md @@ -117,7 +117,7 @@ and `` is the container name of your gitea instance that c Now execute the following command to install this theme: ```bash -sudo docker exec -u sh -c 'mkdir -p /public/css && curl --output-dir /public/css -LO https://git.sainnhe.dev/sainnhe/gitea-themes/raw/branch/master/dist/theme-edge-dark.css' +sudo docker exec -u sh -c 'mkdir -p /public/assets/css && curl --output-dir /public/assets/css -LO https://git.sainnhe.dev/sainnhe/gitea-themes/raw/branch/master/dist/theme-edge-dark.css' ``` Replace `` with the `CustomPath` in this command. @@ -135,7 +135,7 @@ Restart Gitea instance to apply change. ### If Gitea is not deployed via Docker ```bash -mkdir -p /public/css && curl --output-dir /public/css -LO https://git.sainnhe.dev/sainnhe/gitea-themes/raw/branch/master/dist/theme-edge-dark.css +mkdir -p /public/assets/css && curl --output-dir /public/assets/css -LO https://git.sainnhe.dev/sainnhe/gitea-themes/raw/branch/master/dist/theme-edge-dark.css ``` Where `` can be found via `gitea help`.