ctf-tools/codereason/install
raildex1 8054c710c6 Fix missing LIB_VEX error
codereason uses a modified lib_vex that isn't installed system wide, compiled with the make.sh and breaks the install if not there.
2015-09-12 01:21:32 +10:00

12 lines
176 B
Bash
Executable file

#!/bin/bash -e
git clone https://github.com/trailofbits/codereason
cd codereason
./install_vex.sh
./make.sh
cd ..
mkdir -p bin
cd bin
ln -s ../codereason/build/bin/* .
cd ..