diff options
author | silverwind <me@silverwind.io> | 2020-11-17 00:01:05 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-16 18:01:05 -0500 |
commit | c6ab79ee3ceec5cdb5528c5936ff0706e69289e7 (patch) | |
tree | 21602c147519da4fe4024028748f9365435c67a6 /Makefile | |
parent | 48fca01b0d1d7637ccdf8229f26562bca82d7f0e (diff) | |
download | gitea-c6ab79ee3ceec5cdb5528c5936ff0706e69289e7.tar.gz gitea-c6ab79ee3ceec5cdb5528c5936ff0706e69289e7.zip |
Fix Fomatic Build (#13596)
Port of #13593 to 1.13
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -638,8 +638,8 @@ fomantic: $(FOMANTIC_DEST) $(FOMANTIC_DEST): $(FOMANTIC_CONFIGS) | node_modules rm -rf $(FOMANTIC_DEST_DIR) - cp web_src/fomantic/theme.config.less node_modules/fomantic-ui/src/theme.config - cp -r web_src/fomantic/_site/* node_modules/fomantic-ui/src/_site/ + cp -f web_src/fomantic/theme.config.less node_modules/fomantic-ui/src/theme.config + cp -fr web_src/fomantic/_site/* node_modules/fomantic-ui/src/_site/ npx gulp -f node_modules/fomantic-ui/gulpfile.js build @touch $(FOMANTIC_DEST) |