mirror of
https://github.com/Morantron/tmux-fingers.git
synced 2026-09-10 07:26:32 -04:00
12 lines
485 B
Makefile
12 lines
485 B
Makefile
default:
|
|
docker build . -t fingers
|
|
|
|
shell: default
|
|
docker run -it --rm -v $(shell pwd):/app fingers bash
|
|
|
|
dev: default
|
|
docker run -it --rm -v $(shell pwd):/app fingers bash -c "/opt/use-tmux.sh 3.6a; FINGERS_LOG_PATH='/app/fingers.log' shards build; tmux -f spec/conf/dev.conf \; new-session \; split-window 'tail -f /root/.local/state/tmux-fingers/fingers.log' \; last-pane"
|
|
|
|
test: default
|
|
docker run -it --rm -v $(shell pwd):/app fingers bash -c "shards install && crystal spec"
|