buster/apps/cli/Makefile

10 lines
317 B
Makefile
Raw Normal View History

2025-04-10 06:08:42 +08:00
install: build
mkdir -p $(HOME)/.local/bin
2025-04-10 06:24:42 +08:00
cp target/release/buster-cli $(HOME)/.local/bin/buster-local
2025-04-10 06:08:42 +08:00
grep -q '/.local/bin' $(HOME)/.zshrc || echo 'export PATH="$$HOME/.local/bin:$$PATH"' >> $(HOME)/.zshrc
@echo "Run 'source ~/.zshrc' to update your current shell"
build:
cargo build --release -p buster-cli