From 2f48c3659fc74dff3f9524e2bcbc9de17c30baa3 Mon Sep 17 00:00:00 2001 From: silverwind Date: Fri, 10 Jun 2022 07:52:21 +0200 Subject: [PATCH] Normalize line endings in fomantic build files Ensures consistent line endings to avoid useless diffs because there is somthing platform-dependant in that build. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index ce4dec21a298e..2e2c86376b3b0 100644 --- a/Makefile +++ b/Makefile @@ -704,6 +704,7 @@ fomantic: cp -f $(FOMANTIC_WORK_DIR)/theme.config.less $(FOMANTIC_WORK_DIR)/node_modules/fomantic-ui/src/theme.config cp -rf $(FOMANTIC_WORK_DIR)/_site $(FOMANTIC_WORK_DIR)/node_modules/fomantic-ui/src/ cd $(FOMANTIC_WORK_DIR) && npx gulp -f node_modules/fomantic-ui/gulpfile.js build + $(SED_INPLACE) -e 's/\r//g' $(FOMANTIC_WORK_DIR)/build/semantic.css $(FOMANTIC_WORK_DIR)/build/semantic.js rm -f $(FOMANTIC_WORK_DIR)/build/*.min.* .PHONY: webpack