diff options
author | Iraê Carvalho <irae@irae.pro.br> | 2010-02-10 16:40:48 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-02-10 16:40:48 -0500 |
commit | d3d497f900a559ca254d09470db532064eeacc1e (patch) | |
tree | b57865e85e00b9546284b4d0b804579fe75c4581 /Makefile | |
parent | 35c379075c9feaa7cf82b4cf4c50a790e35b4d5f (diff) | |
download | jquery-d3d497f900a559ca254d09470db532064eeacc1e.tar.gz jquery-d3d497f900a559ca254d09470db532064eeacc1e.zip |
Ignore potential error codes from Github in doing a clone. Fixes #6049.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -43,8 +43,8 @@ init: @@echo "Grabbing external dependencies..." @@if test ! -d test/qunit/.git; then git clone git://github.com/jquery/qunit.git test/qunit; fi @@if test ! -d src/sizzle/.git; then git clone git://github.com/jeresig/sizzle.git src/sizzle; fi - @@cd src/sizzle && git pull origin master > /dev/null 2>&1 - @@cd test/qunit && git pull origin master > /dev/null 2>&1 + - @@cd src/sizzle && git pull origin master > /dev/null 2>&1 + - @@cd test/qunit && git pull origin master > /dev/null 2>&1 jquery: ${DIST_DIR} selector ${JQ} jq: ${DIST_DIR} ${JQ} |