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
When trying to use "skip ssl verification" option for git driver in semver Resource type for concourse a GO error occurs:
fatal: bad boolean config value "'false'" for http.sslVerify
I believe this is caused by the syntax on line 181 in /driver/git.go of this repo:
181: gitSkipSSLVerification := exec.Command("git", "config", "--global", "http.sslVerify", "'false'")
where the false string is in single quotes surrounded by double quotes.
The resource should check and initialise without the need for SSL verification when using the git driver in the semver resource.
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug
When trying to use "skip ssl verification" option for git driver in semver Resource type for concourse a GO error occurs:
fatal: bad boolean config value "'false'" for http.sslVerify
I believe this is caused by the syntax on line 181 in /driver/git.go of this repo:
181: gitSkipSSLVerification := exec.Command("git", "config", "--global", "http.sslVerify", "'false'")
where the false string is in single quotes surrounded by double quotes.
Reproduction steps
...
Expected behavior
The resource should check and initialise without the need for SSL verification when using the git driver in the semver resource.
Additional context
No response
The text was updated successfully, but these errors were encountered: