Remove empty install files

This commit is contained in:
Hugo Osvaldo Barrera 2021-06-12 11:41:54 +02:00
parent ec221b52b4
commit bba9d43caf
4 changed files with 3 additions and 1 deletions

View file

@ -63,7 +63,9 @@ all:
install-servers:
set -ex; \
for server in $(DAV_SERVER); do \
(cd $(TESTSERVER_BASE)$$server && sh install.sh); \
if [ -f $(TESTSERVER_BASE)$$server/install.sh ]; then \
(cd $(TESTSERVER_BASE)$$server && sh install.sh); \
fi \
done
install-test: install-servers install-dev