mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-04 18:29:26 +00:00
8 lines
187 B
Bash
Executable file
8 lines
187 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
git clone https://github.com/mozilla/rr.git
|
|
mkdir build
|
|
cd build
|
|
cmake -DCMAKE_INSTALL_PREFIX=.. -G Ninja ../rr
|
|
ninja || ninja-build
|
|
ninja install || ninja-build install
|