Commit 65fd0eb7 authored by Vitaly Lipatov's avatar Vitaly Lipatov

fix load user config file

parent 40b518ce
......@@ -46,7 +46,13 @@ BUILDSERVER=
PKGREPLBASE=$ETERBUILDDIR/pkgrepl
test -f /etc/eterbuild/config && . /etc/eterbuild/config
test -f ~/.eterbuild-config && . ~/.eterbuild-config
# obsoleted
test -f ~/.ebconfig && . ~/.ebconfig
if [ -f ~/.config/eterbuild ] ; then
. ~/.config/eterbuild
elif [ -f ~/.eterbuild-config ] ; then
. ~/.eterbuild-config
else
# obsoleted, load if eterbuild-config is missed
test -f ~/.ebconfig && . ~/.ebconfig
fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment