aboutsummaryrefslogtreecommitdiff
path: root/update.sh
diff options
context:
space:
mode:
Diffstat (limited to 'update.sh')
-rwxr-xr-xupdate.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/update.sh b/update.sh
index 95d852c..21a3682 100755
--- a/update.sh
+++ b/update.sh
@@ -7,9 +7,9 @@ openbsd_branch=`cat OPENBSD_BRANCH`
7echo "pulling upstream openbsd source" 7echo "pulling upstream openbsd source"
8if [ ! -d openbsd ]; then 8if [ ! -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
14fi 14fi
15 15