remove maxperf

This commit is contained in:
chonghe
2023-10-03 19:00:28 +08:00
committed by Tan Chee Keong
parent 3d7e27c504
commit 05ab3c5f9c

View File

@@ -15,13 +15,10 @@ write_to_file() {
# Check if a lighthouse binary exists in the current branch.
# -f means check if the file exists, to see all options, type "bash test" in a terminal
maxperf=./target/maxperf/lighthouse
release=./target/release/lighthouse
debug=./target/debug/lighthouse
if [[ -f "$maxperf" ]]; then
CMD="$maxperf"
elif [[ -f "$release" ]]; then
if [[ -f "$release" ]]; then
CMD="$release"
elif [[ -f "$debug" ]]; then
CMD="$debug"