You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ro...@apache.org on 2019/03/20 15:00:15 UTC

[sling-tooling-scm] 06/35: SLING-3987 - move from Subversion to Git

This is an automated email from the ASF dual-hosted git repository.

rombert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/sling-tooling-scm.git

commit 529b96d0fb694bac6998e7c7adefe6f877c18019
Author: Robert Munteanu <ro...@apache.org>
AuthorDate: Wed Sep 20 20:52:24 2017 +0000

    SLING-3987 - move from Subversion to Git
    
    Silence tag deletion
    
    git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1809080 13f79535-47bb-0310-9956-ffa450edef68
---
 scripts/migrate-to-git.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/migrate-to-git.sh b/scripts/migrate-to-git.sh
index ed270b6..610b394 100755
--- a/scripts/migrate-to-git.sh
+++ b/scripts/migrate-to-git.sh
@@ -97,7 +97,7 @@ while read -r module; do
             # remove unrelated tags
             for tag in $(git tag); do
                 if [[ $tag != ${artifactId}* ]]; then
-                    git tag -d ${tag}
+                    git tag -d ${tag} > /dev/null
                 fi
             done