Commit cad7d8e1 authored by Jim Fulton's avatar Jim Fulton

*** empty log message ***

parent ff4f12be
#!/bin/sh
R=$1
M=DocumentTemplate
# StructuredText < $M.stx > $M.html
StructuredText -t < release_notes > DocumentTemplate-rn.html
cp DocumentTemplate-rn.html ..
rm -rf "$M-$R"
mkdir "$M-$R" "$M-$R/$M"
echo
for f in `cat pyfiles`; do
python1.5 -c "import sys; sys.path.append('..'); from tabnanny import *; f='$f'; check(f)"
done
echo
tar -c -T release.fl -f - | (cd "$M-$R/$M"; tar xvf -)
cp INSTALL "$M-$R"/
tar cvf "$M-$R.tar" "$M-$R"
rm -f "$M-$R.tar.gz"
gzip "$M-$R.tar"
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment