Skip to content

Commit 37e4cdf

Browse files
committed
Update Makefile: add run target with specific config and binary
1 parent b01abbb commit 37e4cdf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ help:
2828
@echo "Build & Test:"
2929
@echo " all Format, lint, and test"
3030
@echo " build Build the omnibus process"
31+
@echo " run Run the omnibus"
3132
@echo " test Run all tests"
3233
@echo " fmt Run cargo fmt"
3334
@echo " clippy Run cargo clippy -D warnings"
@@ -51,7 +52,7 @@ test:
5152
$(CARGO) test
5253

5354
run:
54-
$(CARGO) run -p $(PROCESS_PKG)
55+
cd processes/omnibus && $(CARGO) run --release --bin $(PROCESS_PKG)
5556

5657
fmt:
5758
$(CARGO) fmt --all

0 commit comments

Comments
 (0)