-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Potential problem with installation on Windows when Git is on path #231
Comments
I think windows have an environment variable that include the current path to the windows directory (some OEM installs use a different path). Prefixing the find commend with this windows path variable should be a portable solution to this. |
Good idea. I think the nearest we get is the Windows folder: Pete On 9 October 2015 at 17:51, James Leigh notifications@github.com wrote:
|
Add warning related to #231 in the release notes.
After installing Git in Windows I couldn't run the Callimachus setup script. It was complaining it couldn't find "#". On investigation I discovered that Git had put it's bin folder on the path ahead of the windows system folders so the script was using it's find which is not compatible. The solution was to prefix calls to find with "\Windows\System32" to force the correct one. Do you think this is something worth considering for all commands called from the scripts to make them less vulnerable to path problems?
The text was updated successfully, but these errors were encountered: