1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 20:25:28 +03:00
aports/community/gitea/0001-Fix-Fomatic-Build.patch
2020-11-16 23:00:50 +01:00

29 lines
1 KiB
Diff

From 030626e163d995a0afa3e2c4038afadd36c7de00 Mon Sep 17 00:00:00 2001
From: 6543 <6543@obermui.de>
Date: Mon, 16 Nov 2020 22:50:09 +0100
Subject: [PATCH] Fix Fomatic Build
---
Makefile | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Makefile b/Makefile
index 095252ea0..04bb5b6c4 100644
--- a/Makefile
+++ b/Makefile
@@ -593,9 +593,9 @@ fomantic: $(FOMANTIC_DEST)
$(FOMANTIC_DEST): $(FOMANTIC_CONFIGS) package-lock.json | 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 web_src/fomantic/css.js node_modules/fomantic-ui/tasks/build/css.js
+ cp -f web_src/fomantic/theme.config.less node_modules/fomantic-ui/src/theme.config
+ cp -rf web_src/fomantic/_site/* node_modules/fomantic-ui/src/_site/
+ cp -f web_src/fomantic/css.js node_modules/fomantic-ui/tasks/build/css.js
npx gulp -f node_modules/fomantic-ui/gulpfile.js build
@touch $(FOMANTIC_DEST)
--
2.29.2