Fix mksrcarc.sh for directory reorganisation.
[u/mdw/putty] / mksrcarc.sh
index e955d33..10ca3ec 100755 (executable)
@@ -2,6 +2,7 @@
 perl mkfiles.pl
 text=`{ find . -name CVS -prune -o \
                -name .cvsignore -prune -o \
+               -name .svn -prune -o \
                -name LATEST.VER -prune -o \
                -name CHECKLST.txt -prune -o \
                -name mksrcarc.sh -prune -o \
@@ -9,7 +10,7 @@ text=`{ find . -name CVS -prune -o \
                -name '*.dsw' -prune -o \
                -type f -print | sed 's/^\.\///'; } | \
       grep -ivE MODULE\|putty.iss\|website.url | grep -vF .ico`
-bin=`{ ls -1 *.ico putty.iss website.url; \
+bin=`{ ls -1 windows/*.ico windows/putty.iss windows/website.url; \
        find . -name '*.dsp' -print -o -name '*.dsw' -print; }`
 zip -k -l putty-src.zip $text > /dev/null
 zip -k putty-src.zip $bin > /dev/null