You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
544 B
29 lines
544 B
#!/bin/bash
|
|
|
|
# Copyright (c) 2025, crasowas.
|
|
#
|
|
# Use of this source code is governed by a MIT-style license
|
|
# that can be found in the LICENSE file or at
|
|
# https://opensource.org/licenses/MIT.
|
|
|
|
set -e
|
|
|
|
target_paths=("Build")
|
|
|
|
echo "Cleaning..."
|
|
|
|
deleted_anything=false
|
|
|
|
for path in "${target_paths[@]}"; do
|
|
if [ -e "$path" ]; then
|
|
echo "Removing $path..."
|
|
rm -rf "./$path"
|
|
deleted_anything=true
|
|
fi
|
|
done
|
|
|
|
if [ "$deleted_anything" == true ]; then
|
|
echo "Cleanup completed."
|
|
else
|
|
echo "Nothing to clean."
|
|
fi
|
|
|