More todo
This commit is contained in:
parent
3de1482bf3
commit
6ca7848cf7
3 changed files with 12 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -113,7 +113,7 @@ publish-doc: documentation
|
|||
allclean:
|
||||
rm -f $(DOC_ALL)
|
||||
|
||||
distclean:
|
||||
distclean: allclean
|
||||
rm -f $(DOCBDOCS)
|
||||
|
||||
#
|
||||
|
|
|
@ -9,3 +9,5 @@ X join todos
|
|||
- remove exit-calls
|
||||
* will leave behind unused temporary file!
|
||||
* use _exit_err
|
||||
- replace nico-linux-ccollect with nico-ccollect
|
||||
* ccollect is not Linux specific
|
||||
|
|
|
@ -18,6 +18,13 @@ DHOST=nico@home.schottelius.org
|
|||
DDIR=www/org/schottelius/unix/www/ccollect/
|
||||
DESTINATION="$DHOST:$DDIR"
|
||||
|
||||
# create documentation for the end user
|
||||
(
|
||||
cd "$NAME"
|
||||
make dist
|
||||
make publish-doc
|
||||
)
|
||||
|
||||
tar cvfj "$TARNAME" \
|
||||
--exclude=.git \
|
||||
--exclude="conf/sources/*/destination/*" "$NAME"
|
||||
|
@ -29,3 +36,5 @@ ssh "$DHOST" "( cd $DDIR; tar xfj \"$TARNAME\" )"
|
|||
echo "setting paranoid permissions to public..."
|
||||
ssh "$DHOST" "( cd $DDIR; find -type d -exec chmod 0755 {} \; )"
|
||||
ssh "$DHOST" "( cd $DDIR; find -type f -exec chmod 0644 {} \; )"
|
||||
|
||||
cat "${NAME}/doc/release-checklist"
|
||||
|
|
Loading…
Reference in a new issue