diff options
author | silverwind <me@silverwind.io> | 2020-06-20 17:11:37 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-20 23:11:37 +0800 |
commit | d31a9c544ff8c81229e7a290006a6e85d9004930 (patch) | |
tree | d415342616cc3ee19573e348d461a21cf2eff88f /Makefile | |
parent | e24ee487760cade0c47958fa8c4c1b980875900f (diff) | |
download | gitea-d31a9c544ff8c81229e7a290006a6e85d9004930.tar.gz gitea-d31a9c544ff8c81229e7a290006a6e85d9004930.zip |
Add public/img/svg to WEBPACK_DEST_ENTRIES (#11993)
Webpack outputs to this directory so it should be removed during
cleanup. No backport needed.
Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -91,7 +91,7 @@ GO_PACKAGES ?= $(filter-out code.gitea.io/gitea/integrations/migration-test,$(fi WEBPACK_SOURCES := $(shell find web_src/js web_src/less -type f) WEBPACK_CONFIGS := webpack.config.js WEBPACK_DEST := public/js/index.js public/css/index.css -WEBPACK_DEST_ENTRIES := public/js public/css public/fonts public/serviceworker.js +WEBPACK_DEST_ENTRIES := public/js public/css public/fonts public/serviceworker.js public/img/svg BINDATA_DEST := modules/public/bindata.go modules/options/bindata.go modules/templates/bindata.go BINDATA_HASH := $(addsuffix .hash,$(BINDATA_DEST)) |