mirror of
https://github.com/RPCSX/mbuild.git
synced 2024-11-26 19:50:32 +00:00
52ceb3152e
Change-Id: I6fc3fd7babab231f4389689f9166e04ffba70136
11 lines
347 B
Tcsh
Executable File
11 lines
347 B
Tcsh
Executable File
#!/bin/csh
|
|
|
|
seet webdir=/var/www/html/mjcharne/mbuild
|
|
epydoc -v --simple-term --no-private --html -o epydoc-out --name mbuild --url 'http://mjc.intel.com/mjcharne/mbuild' mbuild/__init__.py
|
|
rm -rf $webdir/epydoc.old
|
|
mv $webdir/epydoc $webdir/epydoc.old
|
|
mkdir -p $webdir/epydoc
|
|
cp epydoc-out/* $webdir/epydoc
|
|
make-web-accessible $webdir/epydoc
|
|
|