2019-03-17 17:18:55 +09:00

8 lines
121 B
Bash
Executable File

#!/bin/bash
set -e
if [ -d "target/release" ]; then
./target/release/bench_bin $1 $2
else
echo "빌드먼저"
fi