diff options
Diffstat (limited to 'qemu_mode')
-rwxr-xr-x | qemu_mode/build_qemu_support.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu_mode/build_qemu_support.sh b/qemu_mode/build_qemu_support.sh index 5d9f5be7..342f16b3 100755 --- a/qemu_mode/build_qemu_support.sh +++ b/qemu_mode/build_qemu_support.sh @@ -121,7 +121,7 @@ else CNT=1 while [ '!' -d qemuafl -a "$CNT" -lt 4 ]; do echo "Trying to clone qemuafl (attempt $CNT/3)" - git clone https://github.com/AFLplusplus/qemuafl + git clone --depth 1 https://github.com/AFLplusplus/qemuafl CNT=`expr "$CNT" + 1` done } |