mirror of https://github.com/Marcusk19/dotctl
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
298 B
Makefile
16 lines
298 B
Makefile
clean:
|
|
rm -rf test/dotctl_test 2> /dev/null
|
|
rm -rf tmp 2> /dev/null
|
|
|
|
sandbox:
|
|
mkdir -p ./tmp/ 2> /dev/null
|
|
cp -r ~/.config/ ./tmp/config 2> /dev/null
|
|
|
|
unit-test:
|
|
TESTING=true go test -v ./test
|
|
rm -rf test/dotctl_test 2> /dev/null
|
|
|
|
pre-commit-hooks:
|
|
pre-commit autoupdate
|
|
pre-commit install
|