8 lines
192 B
Makefile
8 lines
192 B
Makefile
simulate *args:
|
|
cd apps/container && \
|
|
if [ -n "{{args}}" ]; then \
|
|
cargo run --bin container-simulate -- --db-type={{args}}; \
|
|
else \
|
|
cargo run --bin container-simulate; \
|
|
fi
|