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

Commit

Permalink
Merge branch 'release/1.9.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
petervanderdoes committed Oct 20, 2015
2 parents f25391a + a977256 commit 43548ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion Changes.mdown
Expand Up @@ -26,7 +26,11 @@

# Changelog

#### 1.9.0-dev.59
#### 1.9.1
[Peter van der Does][petervanderdoes]
* Bugfix: git-flow directories are not set correctly

#### 1.9.0
[Peter van der Does][petervanderdoes]
* Add bugfix command.
* Repositories with spaces in path cause the pre * post hook to fail.
Expand Down
2 changes: 1 addition & 1 deletion git-flow-version
Expand Up @@ -35,7 +35,7 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

GITFLOW_VERSION=1.9.0-dev.59
GITFLOW_VERSION=1.9.1

initialize() {
# A function can not be empty. Comments count as empty.
Expand Down
2 changes: 1 addition & 1 deletion gitflow-common
Expand Up @@ -290,7 +290,7 @@ gitflow_is_initialized() {
gitflow_load_settings() {
export GIT_CURRENT_REPO_DIR="$(git rev-parse --show-toplevel 2>/dev/null)"
DOT_GIT_DIR=$(git rev-parse --git-dir)
export DOT_GIT_DIR="(cd ${DOT_GIT_DIR} >/dev/null 2>&1 && pwd)"
export DOT_GIT_DIR="$(cd ${DOT_GIT_DIR} >/dev/null 2>&1 && pwd)"
export HOOKS_DIR="$(git config --get gitflow.path.hooks || echo ${DOT_GIT_DIR}/hooks)" # the second option is used to support previous versions of git-flow
export MASTER_BRANCH=$(git config --get gitflow.branch.master)
export DEVELOP_BRANCH=$(git config --get gitflow.branch.develop)
Expand Down

0 comments on commit 43548ed

Please sign in to comment.