Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/peaceiris/hugo-theme-iris.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShohei Ueda <30958501+peaceiris@users.noreply.github.com>2022-04-23 17:17:28 +0300
committerGitHub <noreply@github.com>2022-04-23 17:17:28 +0300
commiteef12f179c21a56562e7f7cbb4f919ecb20050e5 (patch)
tree91c08b741619257305d08959d10862276752b7af /scripts
parent85e17d3880543359991794c6872d9dd07ee443d6 (diff)
feat: stop managing deps with hugo mod (#499)
- feat: resources.GetRemote revealjs.com - feat: resources.GetRemote bulma - feat: resources.GetRemote hotkeys - feat: resources.GetRemote mathjax - feat: resources.GetRemote mermaid - build: refactor Makefile - ci: use peaceiris/workflows/setup-hugo
Diffstat (limited to 'scripts')
-rw-r--r--scripts/setup.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/setup.sh b/scripts/setup.sh
index 95b82b94..93b0f1fa 100644
--- a/scripts/setup.sh
+++ b/scripts/setup.sh
@@ -9,9 +9,10 @@ wget https://github.com/peaceiris/hugo-theme-iris/archive/main.zip
unzip main.zip
rm main.zip
hugo mod init "github.com/$2/$1"
-cp -r ./hugo-theme-iris-main/exampleSite/{assets,config,content,data,i18n,static,.gitignore} .
+cp -r ./hugo-theme-iris-main/exampleSite/{.gitignore,assets,config,content,data,i18n,package-lock.json,package.json,scripts,static} .
rm ./assets/images/.gitignore
rm -rf hugo-theme-iris-main
hugo mod get -u github.com/peaceiris/hugo-theme-iris
+bash ./scripts/fetch_fonts.sh
git add .
git commit -m "Add hugo-theme-iris"