2019-06-26 17:01:43 +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