We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
choco-docker-engine/tools/chocolateyInstall.ps1
Line 41 in 215d2f0
There is an issue while detecting if user already exists in a group. This causes an error and terminates the instalation.
In my case, I have a username with parenthesis ()
()
This prints nothing:
echo "my user (123)" |Select-String "my user (123)"
But this one works:
echo "my user (123)" |Select-String "my user"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
choco-docker-engine/tools/chocolateyInstall.ps1
Line 41 in 215d2f0
There is an issue while detecting if user already exists in a group. This causes an error and terminates the instalation.
In my case, I have a username with parenthesis
()
This prints nothing:
But this one works:
The text was updated successfully, but these errors were encountered: