Skip to content

Commit a7616b3

Browse files
authored
MAINT: Add a make target for dev without building vendored view (#386)
1 parent 70cffef commit a7616b3

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.PHONY: all lint test init-view-submodule vendor-view install dev clean distclean
1+
.PHONY: all lint test init-view-submodule vendor-view install dev dev-no-view clean distclean
22

33
PYTHON ?= python
44
PREFIX ?= $(CONDA_PREFIX)
@@ -28,7 +28,9 @@ install: vendor-view all
2828
mkdir -p $(PREFIX)/etc/conda/activate.d && \
2929
cp hooks/50_activate_q2cli_tab_completion.sh $(PREFIX)/etc/conda/activate.d/
3030

31-
dev: vendor-view all
31+
dev: dev-no-view vendor-view all
32+
33+
dev-no-view: all
3234
pip install -e . && \
3335
mkdir -p $(PREFIX)/etc/conda/activate.d && \
3436
cp hooks/50_activate_q2cli_tab_completion.sh $(PREFIX)/etc/conda/activate.d/

0 commit comments

Comments
 (0)