Unset CDPATH in build scripts

pull/8/head
Maciej Pytel 2018-07-17 15:06:32 +02:00
parent 86b53ff74d
commit 6cdec82868
1 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,9 @@ set -o errexit
set -o nounset
set -o pipefail
# Unset CDPATH, having it set messes up with script import paths
unset CDPATH
USER_ID=$(id -u)
GROUP_ID=$(id -g)