Skip to content

Commit

Permalink
Merge pull request #93 from imposeren/curl-redirects
Browse files Browse the repository at this point in the history
Follow redirects with URL
  • Loading branch information
mlavin committed Sep 29, 2015
2 parents 85d4105 + fa852db commit 92ad6fd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 92ad6fd

Please sign in to comment.