From fa852dbdc099665630f855972fc0f2f53d10207d Mon Sep 17 00:00:00 2001 From: Yaroslav Klyuyev Date: Tue, 29 Sep 2015 23:03:56 +0300 Subject: [PATCH] Follow redirects with URL --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 8005187..4c6b8a5 100644 --- a/Makefile +++ b/Makefile @@ -11,11 +11,11 @@ UNDERSCORE_VERSION = 1.4.4 fetch-static-libs: # Fetch JS library dependencies # Requires curl - curl -o ${LIBS_DIR}/jquery.js http://code.jquery.com/jquery-${JQUERY_VERSION}.js - curl -o ${LIBS_DIR}/require.js http://requirejs.org/docs/release/${REQUIRE_VERSION}/comments/require.js - curl -o ${LIBS_DIR}/backbone.js https://raw.github.com/jashkenas/backbone/${BACKBONE_VERSION}/backbone.js - curl -o ${LIBS_DIR}/underscore.js https://raw.github.com/jashkenas/underscore/${UNDERSCORE_VERSION}/underscore.js - curl -o codemirror-${CODEMIRROR_VERSION}.zip http://codemirror.net/codemirror-${CODEMIRROR_VERSION}.zip + curl -Lo ${LIBS_DIR}/jquery.js http://code.jquery.com/jquery-${JQUERY_VERSION}.js + curl -Lo ${LIBS_DIR}/require.js http://requirejs.org/docs/release/${REQUIRE_VERSION}/comments/require.js + curl -Lo ${LIBS_DIR}/backbone.js https://raw.github.com/jashkenas/backbone/${BACKBONE_VERSION}/backbone.js + curl -Lo ${LIBS_DIR}/underscore.js https://raw.github.com/jashkenas/underscore/${UNDERSCORE_VERSION}/underscore.js + curl -Lo codemirror-${CODEMIRROR_VERSION}.zip http://codemirror.net/codemirror-${CODEMIRROR_VERSION}.zip unzip codemirror-${CODEMIRROR_VERSION}.zip rm -rf ${LIBS_DIR}/codemirror mkdir -p ${LIBS_DIR}/codemirror