We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents df5ad4c + 6f622ae commit 76e9251Copy full SHA for 76e9251
go.sh
@@ -3,7 +3,11 @@
3
export TAG_VERSION=$(git tag --points-at HEAD)
4
if [[ -z "$TAG_VERSION" ]]; then
5
# 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')
+ 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
+
11
major=1
12
minor=0
13
build=-1
0 commit comments