Skip to content

Commit

Permalink
Hotfix Makefile docker build
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Block <[email protected]>
  • Loading branch information
unixorn committed Nov 22, 2023
1 parent 8025187 commit 167d00a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

# If this pukes trying to import paho, try running 'poetry install'
MODULE_VERSION=$(shell grep vers pyproject.toml | cut -d= -f2 | sed s/\"//g)
MODULE_VERSION=$(shell grep '^version' pyproject.toml | cut -d= -f2 | sed s/\"//g | sed s/\ //g)

clean: ## Cleans out stale wheels, generated tar files, .pyc and .pyo files
rm -fv dist/*.tar dist/*.whl
Expand Down

0 comments on commit 167d00a

Please sign in to comment.