blob: c3fbe198094a8bbda5d04824248f5d0ae8367857 (
plain) (
blame)
1
2
3
4
5
6
|
#!/bin/bash
test -d qemu || git clone https://github.com/vanhauser-thc/qemu_taint qemu || exit 1
cd qemu || exit 1
test -d .git || { git stash ; git pull ; }
./build.sh
cp -f ./afl-qemu-taint ../..
|