get the soelim crud right this time !

This commit is contained in:
Geoff Rehmet 1994-04-17 22:27:56 +00:00
parent f503299a86
commit 03863e2a02
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=1370

View file

@ -129,7 +129,7 @@ do_uncompress()
if [ -d $1 ] ; then
dir=$1
cd $dir
for i in $dir/* ; do
for i in * ; do
case $i in
*cat?) ;; # ignore cat directories
*) {
@ -186,7 +186,8 @@ compress_page()
else
if [ $2 != "symbolic" ] ; then
echo gzipping page $pname 1>&2
soelim $pname | gzip -c -- > /tmp/manager.$$
cat $pname | \
(cd .. ; soelim )| gzip -c -- > /tmp/manager.$$
chmod u+w $pname
cp /tmp/manager.$$ $pname
chmod 444 $pname