summarylogtreecommitdiffstats
path: root/clean.sh
blob: c03ee40bc5cd31943bd24a1bf4fb961d274b3aa7 (plain)
1
2
3
4
5
6
7
8
9
#! /bin/sh

dir="$(dirname "$0")"

find "$dir" -maxdepth 1 -mindepth 1 \
    -not -name "$dir" -not -name '.git' \
    -not -name 'PKGBUILD' -not -name '.SRCINFO' \
    -not -name 'clean.sh' \
    -exec rm -rf {} \;