Skip to content
Snippets Groups Projects
Unverified Commit cd022831 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

BUG: fix makefile, copy conf dir correctly

parent 4952d4b1
No related branches found
No related tags found
No related merge requests found
......@@ -117,8 +117,8 @@ cp-ext-test:
done
cp-conf:
cp -r $(CONF_CORE_DIR) $(PUBLIC_DIR)
cp -r $(CONF_EXT_DIR) $(PUBLIC_DIR)
if test -d $(CONF_CORE_DIR); then cp -r $(CONF_CORE_DIR) $(PUBLIC_DIR); else mkdir $(PUBLIC_DIR)/conf; fi
if test -d $(CONF_EXT_DIR); then cp -r $(CONF_EXT_DIR)/* $(PUBLIC_DIR)/conf/; fi
cp-src:
cp -r $(SRC_CORE_DIR) $(PUBLIC_DIR)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment