Skip to content

Commit 23467ce

Browse files
committed
build: fix segmentation fault in release script
1 parent 5faaf29 commit 23467ce

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

scripts/release.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ read VERSION
44

55
read -p "Releasing $VERSION - are you sure? (y/n)" -n 1 -r
66
echo # (optional) move to a new line
7-
if [[ $REPLY =~ ^[Yy]$ ]]
8-
then
7+
if [[ $REPLY =~ ^[Yy]$ ]]; then
98
echo "Releasing $VERSION ..."
109

1110
# lint and test

0 commit comments

Comments
 (0)