Skip to content

Commit

Permalink
chore(bin): clean moon cache in clean.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
bludnic committed Oct 6, 2024
1 parent abf04b7 commit 846334c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Function to remove specified directories
remove_directories() {
local dir=$1
local dirs_to_remove=("node_modules" "dist" "out" "release")
local dirs_to_remove=("node_modules" "dist" "out" "release" ".moon/cache" ".moon/docker")
for sub_dir in "${dirs_to_remove[@]}"; do
if [ -d "$dir/$sub_dir" ]; then
echo "Removing ${dir%/}/$sub_dir..."
Expand Down

0 comments on commit 846334c

Please sign in to comment.