From 4cc61658638ac442906f95f64300760d83e96be3 Mon Sep 17 00:00:00 2001 From: RKrom Date: Mon, 3 Nov 2014 17:28:54 +0100 Subject: [PATCH] Pushing of tags was hanging --- build.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.ps1 b/build.ps1 index b3b278d1e..62bbabace 100644 --- a/build.ps1 +++ b/build.ps1 @@ -223,8 +223,8 @@ Function TagCode { git config --global user.name "Greenshot-AppVeyor" Write-Host "Tagging repo with $fileversion" git tag -a $fileversion -m 'Build from AppVeyor' - Write-Host "Pushing tags to remote." - git push --tags + Write-Host "Pushing tag $fileversion to remote" + git push origin $fileversion return } @@ -243,5 +243,5 @@ PackageZip echo "Generating Portable" PackagePortable -echo "Tagging with $fileversion" +echo "build successful, tagging with $fileversion" TagCode \ No newline at end of file