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