mirror of
https://github.com/VinylDNS/vinyldns
synced 2025-08-22 02:02:14 +00:00
- Move quickstart from `utils` to `quickstart` - Update quickstart script to add more container manipulation - Move API functional tests back under `modules/api` - Move build-related scripts to `build/` directory - Add quickstart containers that can run the local version of the code
17 lines
430 B
Bash
17 lines
430 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# This script will delete all target/ directories and the assembly/ directory
|
|
#
|
|
set -euo pipefail
|
|
DIR=$(
|
|
cd "$(dirname "$0")"
|
|
pwd -P
|
|
)
|
|
|
|
echo "Performing deep clean"
|
|
find "${DIR}/.." -type d -name target -o -name assembly | while read -r p; do if [ -d "$p" ]; then
|
|
echo -n "Removing $p.."
|
|
rm -r "$p" || (echo -e "\e[93mError deleting $p, you may need to be root\e[0m"; exit 1)
|
|
echo "done."
|
|
fi; done
|