microsoft/artifacts-credprovider

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

matteopessina opened this issue · 1 comments

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

Fixed with this PR: #457