1
0
mirror of https://github.com/Zygo/bees.git synced 2025-05-17 21:35:45 +02:00

Don't zap localconf in "make clean"

When you run "make clean", localconf is being removed. This is probably
in most cases not intentional.

Signed-off-by: Kai Krakow <kai@kaishome.de>
This commit is contained in:
Kai Krakow 2018-01-08 22:31:30 +01:00
parent ba981c133a
commit 6c67ae0d5e

View File

@ -10,7 +10,7 @@ MARKDOWN ?= markdown
default all: lib src test README.html
clean: ## Cleanup
git clean -dfx
git clean -dfx -e localconf
.PHONY: lib src test