2
0
Эх сурвалжийг харах

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

Nate McMaster 8 жил өмнө
parent
commit
f58faa416b
1 өөрчлөгдсөн 1 нэмэгдсэн , 1 устгасан
  1. 1 1
      scripts/TagRepos.ps1

+ 1 - 1
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) {