Added test for config files to the Makefile
Config files in the root of the repo makes some tests to fail.
This commit is contained in:
parent
2c24714086
commit
bb5750df13
4
Makefile
4
Makefile
|
|
@ -7,6 +7,10 @@ CWD := $(abspath $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
|
|||
USER_ID=$(shell id -u)
|
||||
GROUP_ID=$(shell id -g)
|
||||
|
||||
ifneq ("$(wildcard *.yaml)","")
|
||||
$(error Move away any config file)
|
||||
endif
|
||||
|
||||
deb:
|
||||
perl debian/make_postinst.pl > debian/postinst
|
||||
chmod +x debian/postinst
|
||||
|
|
|
|||
Loading…
Reference in New Issue