microsoft / artifacts-credprovider

The Azure Artifacts Credential Provider enables dotnet, NuGet.exe, and MSBuild to interactively acquire credentials for Azure Artifacts feeds.
MIT License
771 stars 706 forks source link

README: Linux one-line Credential Provider installer script does not work #450

Closed matteopessina closed 11 months ago

matteopessina commented 1 year ago

Hi, in README.md the command sh -c "$(curl -fsSL https://aka.ms/install-artifacts-credprovider.sh)" throw errors because the script downloaded used features specifc of bash such as [[ expr ]] and not provided by sh. I suggest to change it to bash -c "$(curl -fsSL https://aka.ms/install-artifacts-credprovider.sh

amp-powell commented 11 months ago

Fixed with this PR: https://github.com/microsoft/artifacts-credprovider/pull/457