-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TASK-3885 - Script to create hotfix branch #2264
Conversation
Task linked: TASK-3885 Script for creating hotfix branch |
git push --set-upstream origin "$RELEASE_BRANCH" | ||
else | ||
yellow "[$TAG_VERSION] The tag name must start with v" | ||
exit |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exit 2
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
exit 2 -> Misuse of shell builtins (according to bash documentation)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why?
TASK-3885 - Script to create hotfix branch