Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

merge master #24

Merged
merged 9 commits into from
Oct 10, 2018
Prev Previous commit
quick fix for Makefile (#191)
Crysple authored and yds05 committed Oct 10, 2018
commit 334cad507b09f5844cd04acd3685b4f68b1e05c7
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
@@ -211,14 +211,14 @@ install-python-modules:
.PHONY: install-node-modules
install-node-modules:
mkdir -p $(INSTALL_PREFIX)/nni
rm -rf ${PWD}/src/nni_manager/dist/node_modules
rm -rf src/nni_manager/dist/node_modules

#$(_INFO) Installing NNI Manager $(_END)
cp -rT ${PWD}/src/nni_manager/dist $(INSTALL_PREFIX)/nni/nni_manager
cp -rT ${PWD}/src/nni_manager/node_modules $(INSTALL_PREFIX)/nni/nni_manager/node_modules
cp -rT src/nni_manager/dist $(INSTALL_PREFIX)/nni/nni_manager
cp -rT src/nni_manager/node_modules $(INSTALL_PREFIX)/nni/nni_manager/node_modules

#$(_INFO) Installing Web UI $(_END)
cp -rT ${PWD}/src/webui/build $(INSTALL_PREFIX)/nni/webui
cp -rT src/webui/build $(INSTALL_PREFIX)/nni/webui


.PHONY: install-dev-modules