upgrade asdf to 2.29, per request by Faré (sbcl-devel 2013-02-16)
[sbcl.git] / contrib / asdf / pull-asdf.sh
1 #!/bin/sh
2
3 # Get the current ASDF release from the upstream repo.
4
5 if test -d asdf-upstream
6 then
7     (cd asdf-upstream
8     git checkout release
9     git reset --hard release
10     git pull -a)
11 else
12     git clone --branch release git://common-lisp.net/projects/asdf/asdf.git asdf-upstream
13 fi
14
15 cd asdf-upstream && make