mirror of
https://github.com/hydroxycarbamide/dotfiles.git
synced 2025-05-08 21:59:08 -04:00
19 lines
493 B
Makefile
19 lines
493 B
Makefile
all:
|
|
@echo "Run 'make install' to deploy bass to your function directory."
|
|
|
|
install:
|
|
install -d ~/.config/fish/functions
|
|
install functions/__bass.py ~/.config/fish/functions
|
|
install functions/bass.fish ~/.config/fish/functions
|
|
|
|
uninstall:
|
|
rm -f ~/.config/fish/functions/__bass.py
|
|
rm -f ~/.config/fish/functions/bass.fish
|
|
|
|
test:
|
|
fish test/test_bass.fish
|
|
fish test/test_dollar_on_output.fish
|
|
fish test/test_trailing_semicolon.fish
|
|
fish test/test_non_zero_returncode.fish
|
|
|
|
.PHONY: test
|