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-24 06:27:37 +0300
committerGitHub <noreply@github.com>2022-04-24 06:27:37 +0300
commit82294bafe04b3f5953549266c372a9d05238b566 (patch)
treea241d69915401f08a0f57ecc75b9007ae0282577 /Makefile
parent4c3e9756b1b6c17f256bfda1510ee019871036c4 (diff)
build: remove fetch_fonts.sh (#514)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 2 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 750207b9..5db1fb2b 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ GH_USER_ID := peaceiris
.PHONY: docker-npm-ci
-docker-npm-ci: fetch-fonts
+docker-npm-ci:
export HUGO_VERSION=$(shell make get-hugo-version) && \
$(DOCKER_COMPOSE) run --rm --entrypoint=npm hugo ci
@@ -36,7 +36,7 @@ docker-test: docker-npm-ci
$(DOCKER_COMPOSE) run --rm --entrypoint=hugo hugo $(opt)
.PHONY: npm-ci
-npm-ci: fetch-fonts
+npm-ci:
cd ./exampleSite && \
npm ci
@@ -65,11 +65,6 @@ build-prod: npm-ci
hugo --minify --cleanDestinationDir --printPathWarnings && \
wget -O ./public/report.html ${BASE_URL}/report.html || true
-.PHONY: fetch-fonts
-fetch-fonts:
- cd ./exampleSite && \
- bash ./scripts/fetch_fonts.sh
-
.PHONY: fetch-data
fetch-data:
cd ./exampleSite && \