pgj commented on PR #37:
URL: https://github.com/apache/couchdb-glazier/pull/37#issuecomment-2301241825
One minor note. Maybe that is unrelated but it bugs me a bit.
After installing `git` via `choco`, the path for the binaries is not
(automatically) added to the `PATH`:
```console
mkdir C:\relax\
cd C:\relax\
Set-ExecutionPolicy Bypass -Scope Process -Force;
[System.Net.ServicePointManager]::SecurityProtocol =
[System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object
System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
choco feature enable -n allowGlobalConfirmation
choco install git
```
Thus the invocations of `git` does not work out-of-the-box as the subsequent
instructions would suggest:
```console
git config --global core.autocrlf false
git clone https://github.com/apache/couchdb-glazier
```
To make them work, I had insert the following line:
```console
$env:PATH = $env:PATH + ';C:\Program Files\Git\bin'
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]