Skip to content
New issue

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

rds-deployment/rds-update-certificate/scripts/Script.ps1 nuget dialog being displayed #14

Closed
jagilber opened this issue May 13, 2017 · 1 comment

Comments

@jagilber
Copy link
Member

jagilber commented May 13, 2017

when testing script in session nuget dialog is being displayed
changing from:

	#  verify NuGet package
	$nuget = get-packageprovider nuget
	if (-not $nuget -or ($nuget.Version -lt 2.8.5.22))
	{
		log "installing nuget package..."
		install-packageprovider -name NuGet -minimumversion 2.8.5.201 -force
	}

changing to:

	#  verify NuGet package
	$nuget = get-packageprovider nuget -Force
	if (-not $nuget -or ($nuget.Version -lt 2.8.5.22))
	{
		log "installing nuget package..."
		install-packageprovider -name NuGet -minimumversion 2.8.5.201 -force
	}
@afilenkov
Copy link
Contributor

Merged into develop

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants