mirror of https://github.com/k3s-io/k3s
Unset CDPATH in build scripts
parent
86b53ff74d
commit
6cdec82868
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in New Issue