From 23c60288fc2ca4d78414fdbc7edf3d4d6b9b6cf3 Mon Sep 17 00:00:00 2001 From: Kushan Joshi <0o3ko0@gmail.com> Date: Fri, 17 Jun 2016 12:38:58 +0530 Subject: [PATCH] fix Makefile shell command modules/operation --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7dcaadc42..b9daafcdc 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,7 @@ js/lib/id/modes.js: $(shell find modules/modes -type f) @rm -f $@ node_modules/.bin/rollup -f umd -n iD.modes modules/modes/index.js --no-strict -o $@ -js/lib/id/operations.js: $(shell find modules/modes -type f) +js/lib/id/operations.js: $(shell find modules/operations -type f) @rm -f $@ node_modules/.bin/rollup -f umd -n iD.operations modules/operations/index.js --no-strict -o $@