35f56691bf2563d095b66e37a1d9b931ab01405b
[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