mirror of
https://github.com/RPCSX/mbuild.git
synced 2026-01-31 01:05:17 +01:00
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
|
|
|