Merge pull request #2629 from nmschulte/next

fix conditional in configure script
This commit is contained in:
Michael Stapelberg 2017-01-11 11:47:08 -08:00 committed by GitHub
commit 36b506878e
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ else
fi
in_git_worktree=`git rev-parse --is-inside-work-tree 2>/dev/null`
if "$in_git_worktree" == "true"; then
if [[ "$in_git_worktree" = "true" ]]; then
git_dir=`git rev-parse --git-dir 2>/dev/null`
srcdir=`dirname "$git_dir"`
exclude_dir=`pwd | sed "s,^$srcdir,,g"`