Skip to content

Commit 76e9251

Browse files
Merge pull request #130 from nullinside-development-group/feat/logging
feat: logging
2 parents df5ad4c + 6f622ae commit 76e9251

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

go.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,11 @@
33
export TAG_VERSION=$(git tag --points-at HEAD)
44
if [[ -z "$TAG_VERSION" ]]; then
55
# Get the latest version for the repo
6-
export CURRENT_VERSION=$(curl "https://api.github.com/repos/nullinside-development-group/twitch-streaming-tools/tags" | jq -r '.[0].name')
6+
if ! export CURRENT_VERSION=$(curl "https://api.github.com/repos/nullinside-development-group/nullinside-twitch-streaming-tools/tags" | jq -r '.[0].name')
7+
then
8+
exit 1
9+
fi
10+
711
major=1
812
minor=0
913
build=-1

0 commit comments

Comments
 (0)