Skip to content

Commit 0397c8b

Browse files
authored
Fix codegen-server-test-python path in CI configuration (#4293)
This PR resolves the CI failure [occurring in PR #4288](https://github.com/smithy-lang/smithy-rs/actions/runs/17608605180/job/50025264439?pr=4288#step:4:871) by correcting the path reference.
1 parent 39b735a commit 0397c8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/ci-scripts/codegen-diff/diff_lib.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ def generate_and_commit_generated_code(revision_sha, targets=None):
6969
get_cmd_output(f"mv {target}/build/smithyprojections/{target} {OUTPUT_PATH}/")
7070
if target == target_codegen_server:
7171
get_cmd_output(f"./gradlew --rerun-tasks {target_codegen_server_python}:stubs")
72-
get_cmd_output(f"mv {target}/codegen-server-python/build/smithyprojections/{target}-python {OUTPUT_PATH}/")
73-
get_cmd_output(f"mv {target}/codegen-server-typescript/build/smithyprojections/{target}-typescript {OUTPUT_PATH}/")
72+
get_cmd_output(f"mv {target}/codegen-server-test-python/build/smithyprojections/{target}-python {OUTPUT_PATH}/")
73+
get_cmd_output(f"mv {target}/codegen-server-test-typescript/build/smithyprojections/{target}-typescript {OUTPUT_PATH}/")
7474

7575
# Clean up the SDK directory
7676
get_cmd_output(f"rm -f {OUTPUT_PATH}/aws-sdk/versions.toml")

0 commit comments

Comments
 (0)