Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Add script for cleaning build products #1879

Merged
merged 2 commits into from
Jan 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions scripts/clean_project.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

# Deletes known build products, caches, and temporary storage from the project.
# Useful for reclaiming storage space or before archiving.
#
# Run this script from the root of the project.

rm -rf .gradle
rm -rf .build
rm -rf build
rm -rf AWSSDKSwiftCLI/.build
rm -rf IntegrationTests/.build
rm -rf codegen/.build
rm -rf codegen/sdk-codegen/build
rm -rf codegen/protocol-test-codegen/build
rm -rf codegen/protocol-test-codegen-local/build
rm -rf codegen/smithy-aws-swift-codegen/build

Loading