Modified to make CVS quiet, and remove all supurfluous output.

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@276 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
David Dixon-Peugh
2002-07-10 14:58:20 +00:00
parent aa94b494dc
commit 8a2a419f19

View File

@ -15,8 +15,7 @@ class Project
end
def runAnt
output = `/usr/local/bin/ant -f pmd-web.xml -Dproject.name=#{@name} -Dproject.source=#{@source} -Dlib.repo=/home/dpeugh/projects/lib-repo`
puts output
`/usr/local/bin/ant -f pmd-web.xml -Dproject.name=#{@name} -Dproject.source=#{@source} -Dlib.repo=/home/dpeugh/projects/lib-repo`
end
end
@ -31,7 +30,7 @@ class CVSProject < Project
def updateSource
`rm -rf #{@name}`
`mkdir #{@name}`
`cd #{@name}; cvs -r -d#{@cvsroot} co #{@mod}`
`cd #{@name}; cvs -Q -r -d#{@cvsroot} co #{@mod}`
end
end