From f58faa416b46ed880c3e052c61bd83fd19bdedbd Mon Sep 17 00:00:00 2001 From: Nate McMaster Date: Tue, 14 Nov 2017 16:02:56 -0800 Subject: [PATCH] Remove hard-coded --dry-run from TagRepos script --- scripts/TagRepos.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/TagRepos.ps1 b/scripts/TagRepos.ps1 index bd21163c6e..2bb595027c 100755 --- a/scripts/TagRepos.ps1 +++ b/scripts/TagRepos.ps1 @@ -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) {