Skip to content

Commit

Permalink
Remove CoreFX-specific project.json update code and update summary co…
Browse files Browse the repository at this point in the history
…mment.
  • Loading branch information
dagood committed Jun 9, 2016
1 parent 70fd31d commit df79663
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions UpdateDependencies.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# Licensed under the MIT license. See LICENSE file in the project root for full license information.
#

# This script updates all the project.json files with the latest build version,
# and then creates a Pull Request for the change.
# This script updates dir.props with the current version of CoreCLR
# dependencies, and then creates a Pull Request for the change.

param(
[Parameter(Mandatory=$true)][string]$GitHubUser,
Expand Down Expand Up @@ -50,14 +50,6 @@ function UpdateValidDependencyVersionsFile
return $true
}

# Updates all the project.json files with out of date version numbers
function RunUpdatePackageDependencyVersions
{
cmd /c $PSScriptRoot\build.cmd /t:UpdateInvalidPackageVersions | Out-Host

return $LASTEXITCODE -eq 0
}

# Creates a Pull Request for the updated version numbers
function CreatePullRequest
{
Expand Down Expand Up @@ -121,11 +113,6 @@ if (!(UpdateValidDependencyVersionsFile))
Exit -1
}

if (!(RunUpdatePackageDependencyVersions))
{
Exit -1
}

if (!(CreatePullRequest))
{
Exit -1
Expand Down

0 comments on commit df79663

Please sign in to comment.