1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-05-09 13:42:09 -05:00

Fiddly things involving pruning .svn directories, not mentioning

CVS, line endings etc. which I had to fix just before release.

[originally from svn r5367]
This commit is contained in:
Simon Tatham 2005-02-20 16:14:26 +00:00
parent 70fe897640
commit 254ea454df
4 changed files with 39 additions and 37 deletions

View File

@ -1,4 +1,4 @@
\versionid $Id: faq.but,v 1.82 2004/10/08 12:38:08 jacob Exp $
\versionid $Id$
\A{faq} PuTTY FAQ
@ -158,7 +158,7 @@ completely is the wrong solution and we will not do it.
If you have host keys available in the common \c{known_hosts} format,
we have a script called
\W{http://cvs.tartarus.org/putty/contrib/kh2reg.py}\c{kh2reg.py}
\W{http://www.tartarus.org/~simon-anonsvn/viewcvs.cgi/putty/contrib/kh2reg.py?view=markup}\c{kh2reg.py}
to convert them to a Windows .REG file, which can be installed ahead of
time by double-clicking or using \c{REGEDIT}.

View File

@ -1,6 +1,7 @@
#!/bin/sh
perl mkfiles.pl
text=`{ find . -name CVS -prune -o \
-name .svn -prune -o \
-name .cvsignore -prune -o \
-name LATEST.VER -prune -o \
-name CHECKLST.txt -prune -o \

View File

@ -30,10 +30,11 @@ relver=`cat LATEST.VER`
arcname="putty$arcsuffix"
mkdir uxarc
mkdir uxarc/$arcname
find . -name uxarc -prune -o -name . -o \
find . -name uxarc -prune -o -name .svn -prune -o -name . -o \
-type d -exec mkdir uxarc/$arcname/{} \;
find . -name uxarc -prune -o \
-name CVS -prune -o \
-name .svn -prune -o \
-name .cvsignore -prune -o \
-name '*.zip' -prune -o \
-name '*.tar.gz' -prune -o \