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

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

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