Skip to content

Commit 248f696

Browse files
authored
chore: Add script for cleaning build products (#899)
1 parent 0eda9f0 commit 248f696

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

scripts/clean_project.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash
2+
3+
# Deletes known build products, caches, and temporary storage from the project.
4+
# Useful for reclaiming storage space or before archiving.
5+
#
6+
# Run this script from the root of the project.
7+
8+
rm -rf .gradle
9+
rm -rf .build
10+
rm -rf build
11+
rm -rf smithy-swift-codegen/build

0 commit comments

Comments
 (0)