提交 1786f9f6 编写于 作者: K kohsuke

added my private automation script


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@1060 71c3de6d-444a-0410-be80-ed276b4c234a
上级 66b249ba
#!/bin/bash -x
#
# Kohsuke's automation script to publish javadoc to java.net CVS repository.
# Checked in only because Maven doesn't let me release it unless I have it in CVS.
#
cd ../www/javadoc
cvs update -Pd
cp -R ../../hudson/build/javadoc/* .
# ignore everything under CVS, then
# ignore all files that are already in CVS, then
# add the rest of the files
find . -name CVS -prune -o -exec bash in-cvs.sh {} \; -o \( -print -a -exec cvs add {} \+ \)
# sometimes the first commit fails
cvs commit -m "commit 1 " || cvs commit -m "commit 2"
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册