diff options
Diffstat (limited to 'update.sh')
-rwxr-xr-x | update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -7,9 +7,9 @@ openbsd_branch=`cat OPENBSD_BRANCH` | |||
7 | echo "pulling upstream openbsd source" | 7 | echo "pulling upstream openbsd source" |
8 | if [ ! -d openbsd ]; then | 8 | if [ ! -d openbsd ]; then |
9 | if [ -z "$LIBRESSL_GIT" ]; then | 9 | if [ -z "$LIBRESSL_GIT" ]; then |
10 | git clone https://github.com/libressl/openbsd.git | 10 | git clone --depth=8 https://github.com/libressl/openbsd.git |
11 | else | 11 | else |
12 | git clone $LIBRESSL_GIT/openbsd | 12 | git clone --depth=8 $LIBRESSL_GIT/openbsd |
13 | fi | 13 | fi |
14 | fi | 14 | fi |
15 | 15 | ||