From 7ca643511a989e67838538905cbdc5e2642b0651 Mon Sep 17 00:00:00 2001 From: pvincent Date: Fri, 9 Sep 2022 22:56:21 +0400 Subject: [PATCH] minor --- tools/semver_git_tag | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tools/semver_git_tag b/tools/semver_git_tag index fe899b2..d1bc56f 100755 --- a/tools/semver_git_tag +++ b/tools/semver_git_tag @@ -139,10 +139,11 @@ if [[ -f "${GIT_ROOT_FOLDER}/package.json" ]]; then git add ${GIT_ROOT_FOLDER}/package.json fi -echo $TAG >${GIT_ROOT_FOLDER}/.semver_git_tag -git add ${GIT_ROOT_FOLDER}/.semver_git_tag +echo $TAG +# echo $TAG >${GIT_ROOT_FOLDER}/.semver_git_tag +#git add ${GIT_ROOT_FOLDER}/.semver_git_tag echo "tagging as $TAG ..." -git commit -am "tagged as ${TAG}" -git tag $TAG -git push origin master --tags +#git commit -am "tagged as ${TAG}" +#git tag $TAG +#git push origin master --tags echo done