Skip to content

Commit

Permalink
Fix the condition (#3496)
Browse files Browse the repository at this point in the history
Task/Issue URL:
https://app.asana.com/0/414235014887631/1207921724970682/f

**Description**:
Make sure the if condition actually is checked correctly.
  • Loading branch information
jaceklyp authored Oct 28, 2024
1 parent 41cf8e9 commit 5baa4cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/prepare_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ main() {
read_command_line_arguments "$@"
checkout_base_branch

if [[ $is_subsequent_release ]]; then
if [[ "$is_subsequent_release" -eq 1 ]]; then
create_build_branch
elif [[ $is_hotfix ]]; then
create_build_branch
Expand Down

0 comments on commit 5baa4cb

Please sign in to comment.