From 5c32ea10726a762a4f7f7f3f894fa22b8d1f0e74 Mon Sep 17 00:00:00 2001 From: AJ Stuyvenberg Date: Fri, 30 Jun 2023 10:26:55 -0400 Subject: [PATCH] fix: fix bad substitution error --- scripts/publish_prod.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish_prod.sh b/scripts/publish_prod.sh index fe7bda5dc..a6ea0dee6 100755 --- a/scripts/publish_prod.sh +++ b/scripts/publish_prod.sh @@ -86,7 +86,7 @@ echo "Publishing to https://pypi.org/project/datadog-lambda/" echo echo 'Publishing updates to github' -git commit pyproject.toml -m "Bump version to ${$NEW_VERSION}" +git commit pyproject.toml -m "Bump version to ${NEW_VERSION}" git push origin main git tag "v$LAYER_VERSION" git push origin "refs/tags/v$LAYER_VERSION"