Skip to content

Commit bfe9b83

Browse files
committed
cli: Fix broken Makefile failing to install .
1 parent 32b2bba commit bfe9b83

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ help:
2626
.PHONY: install
2727
install: export
2828
command -v ${PIP} >/dev/null 2>&1
29-
${PIP} install ${PIP_INSTALL_ARGS}
29+
${PIP} install ${PIP_INSTALL_ARGS} .
3030

3131
.PHONY: editable
3232
editable: export
3333
command -v ${PIP} >/dev/null 2>&1
34-
${PIP} install -e ${PIP_INSTALL_ARGS}
34+
${PIP} install -e ${PIP_INSTALL_ARGS} .
3535

3636
.PHONY: export
3737
export:

0 commit comments

Comments
 (0)