Fix bug in codegen diff that omitted new files (#1027)

Co-authored-by: Russell Cohen <rcoh@amazon.com>
This commit is contained in:
John DiSanti 2022-01-04 08:29:05 -08:00 committed by GitHub
parent 1b8707f662
commit 588955440a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -87,6 +87,10 @@ def main():
def generate_and_commit_generated_code(revision_sha):
# Clean the build artifacts before continuing
run("rm -rf aws/sdk/build")
# Generate code
run("./gradlew --rerun-tasks :aws:sdk:assemble")
run("./gradlew --rerun-tasks :codegen-server-test:assemble")