You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by nf...@apache.org on 2020/09/14 09:11:45 UTC

[camel-k] branch master updated: chore(release): fix tag names

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

nferraro pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel-k.git


The following commit(s) were added to refs/heads/master by this push:
     new 7b87840  chore(release): fix tag names
7b87840 is described below

commit 7b87840022e3245a5fd5af13d254357d00acb73a
Author: nicolaferraro <ni...@gmail.com>
AuthorDate: Mon Sep 14 11:11:28 2020 +0200

    chore(release): fix tag names
---
 script/git_tag.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/script/git_tag.sh b/script/git_tag.sh
index dbc26cb..7589f3a 100755
--- a/script/git_tag.sh
+++ b/script/git_tag.sh
@@ -37,12 +37,12 @@ git tag --force ${target_tag} ${target_staging}
 git push --force ${target_remote} ${target_tag}
 echo "Tag ${target_tag} pushed to ${target_remote}"
 
-api_tag="/pkg/apis/camel/$target_tag"
+api_tag="pkg/apis/camel/$target_tag"
 git tag --force ${api_tag} ${target_staging}
 git push --force ${target_remote} ${api_tag}
 echo "Tag ${api_tag} pushed to ${target_remote}"
 
-client_tag="/pkg/client/camel/$target_tag"
+client_tag="pkg/client/camel/$target_tag"
 git tag --force ${client_tag} ${target_staging}
 git push --force ${target_remote} ${client_tag}
 echo "Tag ${client_tag} pushed to ${target_remote}"