Skip to content

Commit 452dadc

Browse files
committed
fixes build
1 parent 4ce601d commit 452dadc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

clients/python/Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,13 +144,13 @@ dist: artifacts_dir ## builds distribution wheel for `osparc_client` and `osparc
144144
python -m pip install build
145145
# Building a binary wheel and a source tarball ...
146146
python -m build --sdist --wheel $(ARTIFACTS_DIR)/client
147-
python -m build --sdist --wheel $(CLIENTS_PYTHON_DIR)/src
147+
python -m build --sdist --wheel $(CLIENTS_PYTHON_DIR)
148148
# Copying to artifacts/dist ...
149149
@-rm -rf $(ARTIFACTS_DIR)/dist
150150
@mkdir $(ARTIFACTS_DIR)/dist
151-
@cp $$(ls artifacts/client/dist/*.whl) $(ARTIFACTS_DIR)/dist
152-
@cp $$(ls client/dist/*.whl) $(ARTIFACTS_DIR)/dist
153-
@cp VERSION $(ARTIFACTS_DIR)/dist
151+
@cp -v $$(ls artifacts/client/dist/*.whl) $(ARTIFACTS_DIR)/dist
152+
@cp -v $$(ls dist/*.whl) $(ARTIFACTS_DIR)/dist
153+
@cp -v VERSION $(ARTIFACTS_DIR)/dist
154154

155155
.PHONY: build-n-install-osparc-dev
156156
build-n-install-osparc-dev: python-client ## install the built osparc package in editable mode

0 commit comments

Comments
 (0)