From 05ab3c5f9c9ec0e75d61a37ae542a655f1615fc3 Mon Sep 17 00:00:00 2001 From: chonghe Date: Tue, 3 Oct 2023 19:00:28 +0800 Subject: [PATCH] remove maxperf --- scripts/cli.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scripts/cli.sh b/scripts/cli.sh index 8f4e201a03..118f907297 100755 --- a/scripts/cli.sh +++ b/scripts/cli.sh @@ -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"