Fix installer script changing into current directory

Fixes #440
This commit is contained in:
Mislav Marohnić 2013-10-26 14:45:02 +02:00
parent 5930aa29c0
commit eaa187b4b7

View file

@ -5,7 +5,7 @@
set -e
cd "${0%/*}"
cd "$(dirname "$0")"
if [ -z "${PREFIX}" ]; then
PREFIX="/usr/local"