Skip to content

Commit

Permalink
Use existing branch names
Browse files Browse the repository at this point in the history
Branches on repositories are named with an initial r.

Prior to #17 the value of $branch
got set to a contain an r through `uname -v | cut -d- -f2`, resulting in
correct names. The commit in PR-17 changes $branch to instead be all
numerical, which presumably must have been a mistake since that is not
how they actually are named.
  • Loading branch information
nospam3089 authored and citrus-it committed Jun 30, 2022
1 parent 41b1f47 commit c07d225
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ fi

if (( relnum % 2 == 0 )); then
release="r$relnum"
branch=$relnum
branch="r$relnum"
else
release=bloody
branch=master
Expand Down

0 comments on commit c07d225

Please sign in to comment.