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)
|
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
|
||||||
|
|
||||||
|
|
||||||
;;
|
;;
|
||||||
|
|
Loading…
Reference in a new issue