We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91b8a4a commit 1dd0df5Copy full SHA for 1dd0df5
cra-scripts/bito-cra.ps1
@@ -49,7 +49,7 @@ function Validate-GitProvider {
49
$git_provider_val = $git_provider_val.ToUpper()
50
51
# Check if the converted value is either "GITLAB" or "GITHUB" or "BITBUCKET"
52
- if ($git_provider_val -ne "GITLAB" -and $git_provider_val -ne "GITHUB" -and $git_provider_val -ne "BITBUCKET" and $git_provider_val -ne "BITBUCKET-ENTERPRISE") {
+ if ($git_provider_val -ne "GITLAB" -and $git_provider_val -ne "GITHUB" -and $git_provider_val -ne "BITBUCKET" -and $git_provider_val -ne "BITBUCKET-ENTERPRISE") {
53
Write-Host "Invalid git provider value. Please enter either GITLAB or GITHUB or BITBUCKET or BITBUCKET-ENTERPRISE."
54
exit 1
55
}
0 commit comments