From 17e7385c1dee063fb6dc4a2ba40b0550b126b624 Mon Sep 17 00:00:00 2001 From: Levon Date: Wed, 10 Jan 2024 18:24:30 -0600 Subject: [PATCH] depth 1 --- scripts/build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build.sh b/scripts/build.sh index c94b066..6900bf6 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -6,9 +6,9 @@ RAV1E_DIR="$BASE_DIR/rav1e" FFMPEG_DIR="$BASE_DIR/ffmpeg" # clone -git clone https://gitlab.com/AOMediaCodec/SVT-AV1.git "$SVT_DIR" -git clone https://github.com/xiph/rav1e "$RAV1E_DIR" -git clone https://git.ffmpeg.org/ffmpeg.git "$FFMPEG_DIR" +git clone https://gitlab.com/AOMediaCodec/SVT-AV1.git "$SVT_DIR" --depth 1 +git clone https://github.com/xiph/rav1e "$RAV1E_DIR" --depth 1 +git clone https://git.ffmpeg.org/ffmpeg.git "$FFMPEG_DIR" --depth 1 # build svt-av1 cd "$SVT_DIR/" || exit