Skip to content
Snippets Groups Projects
Commit 359c6468 authored by Anh Nguyen-Tuong's avatar Anh Nguyen-Tuong
Browse files

Cleanup install script

parent 60c6df00
No related branches found
No related tags found
No related merge requests found
args="$@"
if [[ $args = "" ]]; then
args="all"
fi
for arg in $args; do
case $arg in
all | build | test | deploy)
;;
*)
echo "arg not recognized. Recognized args: all, build, test, deploy"
exit 1
;;
esac
done
# @todo: none of these are necessary?
# these were for building QEMU/afl but that's not a zfuzz concern
which apt-get >/dev/null 2>/dev/null
if [ $? -eq 0 ]; then
PKGS="libtool glib2.0-dev texinfo libtool-bin"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment