From 4d8e9f3b849223ede0f11cf7a0a9296d0bce048c Mon Sep 17 00:00:00 2001 From: silverwind Date: Fri, 10 Jun 2022 14:24:02 +0200 Subject: [PATCH] Normalize line endings in fomantic build files (#19932) Ensures consistent line endings to avoid useless diffs because there is somthing platform-dependant in that build. Co-authored-by: wxiaoguang --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index ce4dec21a2..2e2c86376b 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