mirror of
https://github.com/ratatui-org/ratatui
synced 2024-11-10 07:04:17 +00:00
chore(Makefile): make run-examples compile the examples in release mode
This commit is contained in:
parent
09c09d2fd1
commit
22579b77cc
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -71,7 +71,7 @@ build-examples: ## Build all examples
|
|||
run-examples: ## Run all examples
|
||||
@for file in examples/*.rs; do \
|
||||
name=$$(basename $${file/.rs/}); \
|
||||
$(CARGO) run --all-features --example $$name; \
|
||||
$(CARGO) run --all-features --release --example $$name; \
|
||||
done;
|
||||
|
||||
# ================================ Doc ========================================
|
||||
|
|
Loading…
Reference in a new issue