re-indent

Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
Nico Schottelius 2012-10-25 18:44:05 +02:00
parent 45a4719fb0
commit 65128e4bcf
1 changed files with 146 additions and 141 deletions

17
build
View File

@ -53,21 +53,26 @@ case "$1" in
;; ;;
pypi-manifest) pypi-manifest)
: > MANIFEST # init MANIFEST
echo README > MANIFEST
# bin # bin
echo bin/cdist >> MANIFEST echo bin/cdist >> MANIFEST
# main source
find cdist -type f >> MANIFEST
# conf # conf
find conf >> MANIFEST find conf -type f >> MANIFEST
# docs # docs
ls docs/changelog* >> MANIFEST ls docs/changelog* >> MANIFEST
find docs/gfx >> MANIFEST find docs/gfx -type f >> MANIFEST
find docs/man/ -name \*.text >> MANIFEST find docs/man/ -type f -name \*.text >> MANIFEST
find docs/man/ -name \*.text.sh >> MANIFEST find docs/man/ -type f -name \*.text.sh >> MANIFEST
# other # other
find other/ >> MANIFEST find other/ -type f >> MANIFEST
;; ;;