Skip to content
This repository has been archived by the owner on Jun 19, 2023. It is now read-only.

Fix "Not a gitflow-enabled repo" bug https://github.com/petervanderdo… #374

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gitflow-common
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ gitflow_is_initialized() {
gitflow_has_master_configured && \
gitflow_has_develop_configured && \
[ "$(git config --get gitflow.branch.master)" != "$(git config --get gitflow.branch.develop)" ] && \
$(git config --get-regexp gitflow.prefix >/dev/null 2>&1)
git config --get-regexp gitflow.prefix >/dev/null 2>&1
}

# Loading settings that can be overridden using git config
Expand Down