Remove hard-coded --dry-run from TagRepos script
This commit is contained in:
parent
d7785d6187
commit
f58faa416b
|
|
@ -46,7 +46,7 @@ Get-Submodules $RepoRoot -Shipping | % {
|
||||||
if ($WhatIfPreference) {
|
if ($WhatIfPreference) {
|
||||||
$gitPushArgs += '--dry-run'
|
$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) {
|
if ($WhatIfPreference) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue