Sync eng/common directory with azure-sdk-tools repository (#149)
This commit is contained in:
parent
602f75744a
commit
152aabbd83
@ -121,8 +121,16 @@ do
|
||||
continue
|
||||
}
|
||||
|
||||
Write-Host "git -c user.name=`"azure-sdk`" -c user.email=`"azuresdk@microsoft.com`" commit -am `"$($CommitMsg)`""
|
||||
git -c user.name="azure-sdk" -c user.email="azuresdk@microsoft.com" commit -am "$($CommitMsg)"
|
||||
Write-Host "git add -A"
|
||||
git add -A
|
||||
if ($LASTEXITCODE -ne 0)
|
||||
{
|
||||
Write-Error "Unable to git add LASTEXITCODE=$($LASTEXITCODE), see command output above."
|
||||
continue
|
||||
}
|
||||
|
||||
Write-Host "git -c user.name=`"azure-sdk`" -c user.email=`"azuresdk@microsoft.com`" commit -m `"$($CommitMsg)`""
|
||||
git -c user.name="azure-sdk" -c user.email="azuresdk@microsoft.com" commit -m "$($CommitMsg)"
|
||||
if ($LASTEXITCODE -ne 0)
|
||||
{
|
||||
Write-Error "Unable to commit LASTEXITCODE=$($LASTEXITCODE), see command output above."
|
||||
|
||||
Loading…
Reference in New Issue
Block a user