Skip to content

Commit

Permalink
fuzz: Fix build as upstream xz repo has disabled cloning
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroz committed Jul 23, 2024
1 parent 021e5c3 commit 3dc5d50
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/fuzz/oss-fuzz-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ in_oss_fuzz && apt-get update && apt-get install -y \
bison flex

[ ! -d zlib ] && git clone --depth 1 https://github.com/madler/zlib.git
[ ! -d xz ] && git clone https://git.tukaani.org/xz.git
# Upstream repo has disabled cloning https://git.tukaani.org/xz.git
[ ! -d xz ] && git clone --depth 1 https://github.com/tukaani-project/xz
[ ! -d json-c ] && git clone --depth 1 https://github.com/json-c/json-c.git
[ ! -d lvm2 ] && git clone --depth 1 https://gitlab.com/lvmteam/lvm2
[ ! -d popt ] && git clone --depth 1 https://github.com/rpm-software-management/popt.git
Expand Down

0 comments on commit 3dc5d50

Please sign in to comment.