mirror of
https://github.com/certbot/certbot.git
synced 2026-04-23 15:17:48 -04:00
9 lines
280 B
Bash
Executable file
9 lines
280 B
Bash
Executable file
#!/bin/sh -x
|
|
# Download and run Boulder instance for integration testing
|
|
|
|
export GOPATH="${GOPATH:-/tmp/go}"
|
|
|
|
go get -d github.com/letsencrypt/boulder
|
|
cd $GOPATH/src/github.com/letsencrypt/boulder
|
|
./start.py &
|
|
# Hopefully start.py bootstraps before integration test is started...
|