mirror of
https://github.com/sigp/lighthouse.git
synced 2026-04-30 03:03:45 +00:00
remove maxperf
This commit is contained in:
@@ -15,13 +15,10 @@ write_to_file() {
|
|||||||
|
|
||||||
# Check if a lighthouse binary exists in the current branch.
|
# 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
|
# -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
|
release=./target/release/lighthouse
|
||||||
debug=./target/debug/lighthouse
|
debug=./target/debug/lighthouse
|
||||||
|
|
||||||
if [[ -f "$maxperf" ]]; then
|
if [[ -f "$release" ]]; then
|
||||||
CMD="$maxperf"
|
|
||||||
elif [[ -f "$release" ]]; then
|
|
||||||
CMD="$release"
|
CMD="$release"
|
||||||
elif [[ -f "$debug" ]]; then
|
elif [[ -f "$debug" ]]; then
|
||||||
CMD="$debug"
|
CMD="$debug"
|
||||||
|
|||||||
Reference in New Issue
Block a user