Changes between Initial Version and Version 1 of Ticket #582, comment 2


Ignore:
Timestamp:
Nov 4, 2018, 3:09:24 AM (5 years ago)
Author:
TobWen

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #582, comment 2

    initial v1  
    1 I've just fixed the problem. When installing "R-Tools" or other applications, who bring their own ''find'' (f.e. GNU find), the PATH variable get messed up. Using the fix supplied, Microsoft Windows' find.exe is used.
     1I've just fixed the problem. When installing "R-Tools" or other applications, who bring their own ''find'' (f.e. GNU find), the PATH variable get messed up. Using the fix supplied, Microsoft Windows' ''find.exe'' is used.
     2
     3{{{
     4if exist *.%%a dir /d *.%%a | find ".%%a" >>"%temp%\o-help-list.txt"
     5}}}
     6vs.
     7{{{
     8if exist *.%%a dir /d *.%%a | %windir%\system32\find ".%%a" >>"%temp%\o-help-list.txt"
     9}}}