Skip to content

Commit

Permalink
use older boulder version (#5852)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmw committed Apr 11, 2018
1 parent 88ceaa3 commit 6b29d15
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/boulder-fetch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,11 @@ set -xe
export GOPATH=${GOPATH:-$HOME/gopath}
BOULDERPATH=${BOULDERPATH:-$GOPATH/src/github.com/letsencrypt/boulder}
if [ ! -d ${BOULDERPATH} ]; then
git clone --depth=1 https://github.com/letsencrypt/boulder ${BOULDERPATH}
git clone https://github.com/letsencrypt/boulder ${BOULDERPATH}
fi

cd ${BOULDERPATH}
git checkout fa5c9176655d9fa8dfca188de08bd5373aca422f
FAKE_DNS=$(ifconfig docker0 | grep "inet addr:" | cut -d: -f2 | awk '{ print $1}')
[ -z "$FAKE_DNS" ] && FAKE_DNS=$(ifconfig docker0 | grep "inet " | xargs | cut -d ' ' -f 2)
[ -z "$FAKE_DNS" ] && FAKE_DNS=$(ip addr show dev docker0 | grep "inet " | xargs | cut -d ' ' -f 2 | cut -d '/' -f 1)
Expand Down

0 comments on commit 6b29d15

Please sign in to comment.