Skip to content

Commit 772e5eb

Browse files
committed
fix: path in examples cli.py
1 parent ea76a4e commit 772e5eb

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

packages/examples/cli.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,12 @@ def build_examples():
5757
logger.exception("Failed to copy testing library")
5858
return False
5959

60-
# Copy testing SDK source
60+
# Copy SDK source from the main SDK package
6161
testing_src = (
62-
Path(__file__).parent.parent / "src" / "aws_durable_execution_sdk_python"
62+
Path(__file__).parent.parent
63+
/ "aws-durable-execution-sdk-python"
64+
/ "src"
65+
/ "aws_durable_execution_sdk_python"
6366
)
6467
logger.info("Copying SDK from %s", testing_src)
6568
shutil.copytree(testing_src, build_dir / "aws_durable_execution_sdk_python")

0 commit comments

Comments
 (0)