mirror of
https://github.com/fluencelabs/jsonpath
synced 2025-04-02 15:01:04 +00:00
8 lines
115 B
Bash
8 lines
115 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
if [ -d "target/release" ]; then
|
||
|
./target/release/bench_bin
|
||
|
else
|
||
|
echo "빌드먼저"
|
||
|
fi
|