mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 23:12:33 +00:00
8054c710c6
codereason uses a modified lib_vex that isn't installed system wide, compiled with the make.sh and breaks the install if not there.
12 lines
176 B
Bash
Executable file
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 ..
|