Skip to content

Commit 43e9f8c

Browse files
author
Taniya Mathur
committed
Fix Makefile wait command to use new idpcli package name
Update import from idp_cli.util.codepipeline_util to idpcli.util.codepipeline_util
1 parent 33404d5 commit 43e9f8c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/sdlc/idp-cli/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ smoketest:
5252
wait:
5353
$(eval VERSION_ID := $(shell cat $(IDP_CWD)/.upload_version_id 2>/dev/null || echo ""))
5454
@if [ -z "$(VERSION_ID)" ]; then echo "Error: No version ID found"; exit 1; fi
55-
$(eval EXECUTION_ID := $(shell poetry run python -c "from idp_cli.util.codepipeline_util import CodePipelineUtil; print(CodePipelineUtil.get_execution_id_by_version('$(IDP_PIPELINE_NAME)', '$(VERSION_ID)'))" || echo "FAILED"))
55+
$(eval EXECUTION_ID := $(shell poetry run python -c "from idpcli.util.codepipeline_util import CodePipelineUtil; print(CodePipelineUtil.get_execution_id_by_version('$(IDP_PIPELINE_NAME)', '$(VERSION_ID)'))" || echo "FAILED"))
5656
@if [ "$(EXECUTION_ID)" = "FAILED" ]; then echo "Error: Failed to find pipeline execution for version $(VERSION_ID)"; exit 1; fi
5757
poetry run idpcli monitor-pipeline \
5858
--pipeline-name=$(IDP_PIPELINE_NAME) \

0 commit comments

Comments
 (0)