Skip to content

Commit

Permalink
Release: Fix issue with tag script on osx (#19557)
Browse files Browse the repository at this point in the history
* Release: Fix issue with release script on osx

* Added shellcheck ignore rule
  • Loading branch information
torkelo authored Oct 2, 2019
1 parent 1336147 commit 781b679
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ lint-go: go-vet golangci-lint revive revive-alerting gosec
# with disabled SC1071 we are ignored some TCL,Expect `/usr/bin/env expect` scripts
shellcheck: $(SH_FILES)
@docker run --rm -v "$$PWD:/mnt" koalaman/shellcheck:stable \
$(SH_FILES) -e SC1071
$(SH_FILES) -e SC1071 -e SC2162

run: scripts/go/bin/bra
@scripts/go/bin/bra run
Expand Down
2 changes: 1 addition & 1 deletion scripts/tag_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ git tag -v "${_tag}"
echo "Make sure the tag is signed as expected"
echo "press [y] to push the tags"

read -n -r 1 confirm
read -n 1 confirm

if [ "${confirm}" == "y" ]; then
git push origin "${_branch}" --tags
Expand Down

0 comments on commit 781b679

Please sign in to comment.