On Sun, Mar 30, 2003 at 11:33:54PM +0200, Corinna Vinschen wrote:
>     if [ ! -e /bin/lint.exe || ! -e /bin/lint ]; then
> 
>   should be
> 
>     if [ ! -e /bin/lint.exe -o ! -e /bin/lint ]; then

Well, on second thought, shouldn't that be

      if [ ! -e /bin/lint.exe -a ! -e /bin/lint ]; then

?

Corinna

-- 
Corinna Vinschen                  Please, send mails regarding Cygwin to
Cygwin Developer                                mailto:[EMAIL PROTECTED]
Red Hat, Inc.

Reply via email to