You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to make sure the 'find' command is using the unix one from msysgit. I think the problem is the system path variable is overriding whatever I set in init.bat.
My thinking is that placing paths in this order will control which executable is used by letting the system use the first one it finds. When I echo %path% it is definitely placing these paths before the default system paths but it still doesn't recognize the find.exe from msysgit and uses the one in system32 instead.
The text was updated successfully, but these errors were encountered:
Got it worked out. First I upgraded to the latest version because I noticed some differences in the init.bat file but I don't think that was the problem.
I noticed echoing path that 7zip and gnuwin32 were getting the numbers cut off but I think that's because numbers in variable names don't work. They're fine in the path a variable points to, just not in the variable name it's self.
Here is my new setup which is working fine. I did have to move %PATH% to the end though so windows 'find' would not be used.
I'm trying to make sure the 'find' command is using the unix one from msysgit. I think the problem is the system path variable is overriding whatever I set in init.bat.
Or I may be doing this wrong.
relevant section in init.bat
My thinking is that placing paths in this order will control which executable is used by letting the system use the first one it finds. When I echo %path% it is definitely placing these paths before the default system paths but it still doesn't recognize the find.exe from msysgit and uses the one in system32 instead.
The text was updated successfully, but these errors were encountered: