From 86cd551309602f35909c2398d7b5c4c05e6dc16d Mon Sep 17 00:00:00 2001 From: shockrah Date: Wed, 7 Apr 2021 20:42:30 -0700 Subject: [PATCH] Adding option to build release version of tui --- tui/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tui/Makefile b/tui/Makefile index 297569d..4887588 100644 --- a/tui/Makefile +++ b/tui/Makefile @@ -1,5 +1,8 @@ default: cargo build +release: + cargo build --release + run: cargo run -- -c example-config.json