mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-14 09:18:09 +00:00
13 lines
167 B
Bash
13 lines
167 B
Bash
#!/bin/bash
|
|
set -eu
|
|
cd "$(dirname "$0")"
|
|
|
|
# compile our targets
|
|
./build.sh raddbg raddbg_non_graphical radlink radbin torture
|
|
|
|
# run torture
|
|
cd build
|
|
./torture
|
|
cd ..
|
|
|