Re: Bug: "cygpath -w ." returns ".\" instead of "."

2004-07-01 Thread Luc Hermitte
Hello, * On Thu, Jul 01, 2004 at 02:42:46PM -0700, Trevor Baker <[EMAIL PROTECTED]> wrote: > Now in cygwin this may cause problems elsewhere, such as in the following > trivial script: > #-- > #!/bin/sh > > BASEDIR=`cygpath -w .` > FILE="$BASEDIR/out.txt" > > touch "$FILE" > #--

Bug: "cygpath -w ." returns ".\" instead of "."

2004-07-01 Thread Trevor Baker
Hi, If I execute these commands, I get these outputs: $ cygpath -w . .\ $ cygpath -u . . As you can see these commands return different values. Now in cygwin this may cause problems elsewhere, such as in the following trivial script: #-- #!/bin/sh BASEDIR=`cygpath -w .` FILE="$BASEDIR/o