Skip to content

Commit

Permalink
chore: Add script for cleaning build products
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelkins committed Jan 28, 2025
1 parent 58cef3b commit d3d1228
Showing 1 changed file with 18 additions and 0 deletions.
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

0 comments on commit d3d1228

Please sign in to comment.