blob: 43a98a2250338255caa541f1b9a59813d91d2729 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# planet! -*- sh -*-
build(){ # build the library/whatever
ok chicken-install -n
}
clean(){ # clean up ignored files
ignore=.gitignore
test -f "$ignore" || return 1
while read -r glob
do find . -iname "$glob" |
while read -r file
do ok rm "$file"
done
done < "$ignore"
}
|