mirror of
https://github.com/KLayout/klayout.git
synced 2026-08-31 10:06:28 +02:00
15 lines
250 B
Bash
Executable File
15 lines
250 B
Bash
Executable File
#!/bin/bash
|
|
# File: macbuild/cleanQAT.sh
|
|
#
|
|
# Task: cleanup qt*.macQAT directories
|
|
|
|
for d in *macQAT*; do
|
|
if [ -d "$d" ]; then
|
|
echo "Processing: $d"
|
|
(
|
|
cd "$d" || exit 1
|
|
\rm -rf QATest*
|
|
)
|
|
fi
|
|
done
|