Merge "Fix the ugly base directory path"

This commit is contained in:
Jenkins 2016-02-05 17:52:38 +00:00 committed by Gerrit Code Review
commit 1b3480edca

@ -10,7 +10,7 @@ function find_base_dir {
elif [[ ${dir_name} == "/usr/local/bin" ]]; then
BASEDIR=/usr/local/share/kolla
else
BASEDIR="${dir_name}/.."
BASEDIR="$(dirname ${dir_name})"
fi
}