Skip to content

Commit

Permalink
fixed string comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
nfearnley committed Jun 7, 2024
1 parent 031b2e8 commit f313eab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
echo ------------BEGIN-------------;
branch=$1
if [ "$branch" -eq "master" ]; then
if [ "$branch" = "master" ]; then
botname="sizebot"
elif [ "$branch" -eq "develop" ]; then
elif [ "$branch" = "develop" ]; then
botname="nizebot"
else
echo "Unrecognized branch: ${branch}";
Expand Down

0 comments on commit f313eab

Please sign in to comment.