Loading client_examples/python/Makefile +10 −0 Original line number Diff line number Diff line Loading @@ -9,6 +9,15 @@ push: build shell: docker run -ti --net=host $(IMAGE_NAME) # Let us run `make runall` within the docker container as well ifeq ($(shell which docker),) runall: @for f in *.py; \ do echo $$(tput setaf 1)Running $$f $$(tput sgr0); \ python $$f; \ echo; \ done else runall: docker run -ti --net=host $(IMAGE_NAME) bash -c "\ for f in *.py; \ Loading @@ -16,3 +25,4 @@ runall: python \$$f; \ echo; \ done" endif Loading
client_examples/python/Makefile +10 −0 Original line number Diff line number Diff line Loading @@ -9,6 +9,15 @@ push: build shell: docker run -ti --net=host $(IMAGE_NAME) # Let us run `make runall` within the docker container as well ifeq ($(shell which docker),) runall: @for f in *.py; \ do echo $$(tput setaf 1)Running $$f $$(tput sgr0); \ python $$f; \ echo; \ done else runall: docker run -ti --net=host $(IMAGE_NAME) bash -c "\ for f in *.py; \ Loading @@ -16,3 +25,4 @@ runall: python \$$f; \ echo; \ done" endif