Skip to content

Commit

Permalink
quick fix for Makefile (#191)
Browse files Browse the repository at this point in the history
  • Loading branch information
Crysple authored and yds05 committed Oct 10, 2018
1 parent 28d3039 commit 334cad5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 334cad5

Please sign in to comment.