From 167d00adaa1d9030e33525b26a56ff3c3087d5ab Mon Sep 17 00:00:00 2001 From: Joe Block Date: Wed, 22 Nov 2023 14:32:29 -0700 Subject: [PATCH] Hotfix Makefile docker build Signed-off-by: Joe Block --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f695796..974c092 100644 --- a/Makefile +++ b/Makefile @@ -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