This is the mail archive of the cygwin-apps mailing list for the Cygwin project.
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |
| Other format: | [Raw text] | |
Pierre A. Humblet wrote:
> + else
> + OLDHOME=$HOME
> + { [ -d "$TEMP" ] && HOME="$TMP"; } || { [ -d /tmp ] && HOME=/tmp; } || HOME=/
Looks like a typo to me. Perhaps you meant
{ [ -d "$TEMP" ] && HOME="$TEMP"; }
|| ( [ -d "$TMP" ] && HOME="$TMP"; }
|| { [ -d /tmp ] && HOME=/tmp; }
|| HOME=/
cheers,
DaveK
| Index Nav: | [Date Index] [Subject Index] [Author Index] [Thread Index] | |
|---|---|---|
| Message Nav: | [Date Prev] [Date Next] | [Thread Prev] [Thread Next] |