Skip to content

Commit

Permalink
ci/utils: update make_release.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
nil0x42 committed Sep 10, 2020
1 parent 5c6f22f commit f1e33fc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions utils/make_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cd "$(git rev-parse --show-toplevel)"
# colors
RED='\033[0;31m'
GREEN='\033[0;32m'
BOLD='\033[1m'
BOLD='\033[1m'
NC='\033[0m' # No Color


Expand Down Expand Up @@ -112,7 +112,7 @@ fi

VER=$1
TAG="v${VER}"
MSG="Release version ${VER}"
MSG="${VER} release"

# set verbose/err
set -ve
Expand All @@ -135,7 +135,7 @@ git add ./man/
git commit -m "$MSG"

# add release tag to created commit
git tag -a v3.0 -m "Version 3.0"
git tag -a $TAG -m "$MSG"

# unset verbose/err
set +ve
Expand Down

0 comments on commit f1e33fc

Please # to comment.