We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07d0b71 commit 1764412Copy full SHA for 1764412
Makefile
@@ -487,10 +487,9 @@ node_modules/fomantic-ui/src: node-check node_modules
487
# TODO(das7pad): replace with resolve.alias when building fomantic with webpack
488
node_modules/fomantic-ui/src/theme.config: node_modules/fomantic-ui/src
489
node_modules/fomantic-ui/src/theme.config: web_src/fomantic/theme.config.less
490
- @diff=$$(diff '$<' '$@'); \
491
- if [ -n "$$diff" ]; then \
492
- cp -f $< $@; \
493
- fi;
+ifeq (,$(wildcard $@))
+ cp $< $@
+endif
494
495
$(FOMANTIC_DEST_DIR): node_modules/fomantic-ui/src
496
$(FOMANTIC_DEST_DIR): node_modules/fomantic-ui/src/theme.config
0 commit comments