mirror of https://github.com/getdnsapi/getdns.git
15 lines
375 B
Plaintext
15 lines
375 B
Plaintext
# #-- 070-coding-practice.pre--#
|
|
# source the master var file when it's there
|
|
if [ -f ../.tpkg.var.master ]
|
|
then
|
|
source ../.tpkg.var.master
|
|
else
|
|
(
|
|
cd ..
|
|
[ -f "${TPKG_SRCDIR}/setup-env.sh" ] \
|
|
&& sh "${TPKG_SRCDIR}/setup-env.sh"
|
|
) && source ../.tpkg.var.master
|
|
fi
|
|
# use .tpkg.var.test for in test variable passing
|
|
[ -f .tpkg.var.test ] && source .tpkg.var.test
|