Remove hard-coded --dry-run from TagRepos script

This commit is contained in:
Nate McMaster 2017-11-14 16:02:56 -08:00
parent d7785d6187
commit f58faa416b
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ Get-Submodules $RepoRoot -Shipping | % {
if ($WhatIfPreference) {
$gitPushArgs += '--dry-run'
}
Invoke-Block { & git push --dry-run @gitPushArgs origin "refs/tags/${tag}" }
Invoke-Block { & git push @gitPushArgs origin "refs/tags/${tag}" }
}
if ($WhatIfPreference) {