re-indent
Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
parent
45a4719fb0
commit
65128e4bcf
1 changed files with 146 additions and 141 deletions
17
build
17
build
|
@ -53,21 +53,26 @@ case "$1" in
|
|||
;;
|
||||
|
||||
pypi-manifest)
|
||||
: > MANIFEST
|
||||
# init MANIFEST
|
||||
echo README > MANIFEST
|
||||
|
||||
# bin
|
||||
echo bin/cdist >> MANIFEST
|
||||
|
||||
# main source
|
||||
find cdist -type f >> MANIFEST
|
||||
|
||||
# conf
|
||||
find conf >> MANIFEST
|
||||
find conf -type f >> MANIFEST
|
||||
|
||||
# docs
|
||||
ls docs/changelog* >> MANIFEST
|
||||
find docs/gfx >> MANIFEST
|
||||
find docs/man/ -name \*.text >> MANIFEST
|
||||
find docs/man/ -name \*.text.sh >> MANIFEST
|
||||
find docs/gfx -type f >> MANIFEST
|
||||
find docs/man/ -type f -name \*.text >> MANIFEST
|
||||
find docs/man/ -type f -name \*.text.sh >> MANIFEST
|
||||
|
||||
# other
|
||||
find other/ >> MANIFEST
|
||||
find other/ -type f >> MANIFEST
|
||||
|
||||
|
||||
;;
|
||||
|
|
Loading…
Reference in a new issue