From d8ff6e131a946040741ca06b4151d732a976db5c Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Thu, 15 Jan 2015 17:02:49 +0000 Subject: [PATCH] Should fix MKWS-351. Fix up the "" tag in our local copy of jQuery to be self-closing. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index ed4a0c1..21a8c5a 100644 --- a/src/Makefile +++ b/src/Makefile @@ -72,7 +72,7 @@ $(DEST)/${HANDLEBARS_FILE}: $(DEST)/${JQUERY_FILE}: curl -sSf ${JQUERY_URL} -o $@.tmp - perl -npe 's,sourceMappingURL=jquery.*map,,' $@.tmp > $@ + perl -npe 's,sourceMappingURL=jquery.*map,,' $@.tmp | sed 's@@@' > $@ rm -f $@.tmp $(DEST)/${JQUERY_JSON_FILE}: -- 1.7.10.4