mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 06:52:36 +00:00
15 lines
220 B
Bash
Executable file
15 lines
220 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "XROP IS CURRENTLY BROKEN UPSTREAM"
|
|
exit
|
|
|
|
git clone https://github.com/acama/xrop.git
|
|
cd xrop
|
|
git submodule update --init --recursive
|
|
make -j $(nproc)
|
|
cd ..
|
|
|
|
mkdir bin
|
|
cd bin
|
|
ln -s ../xrop/xrop .
|
|
cd ..
|