This commit is contained in:
2022-07-04 16:27:11 +01:00
parent a0e3bd8e33
commit aba8c2cbd9

View File

@ -64,10 +64,6 @@ fi
if [ -f ${BASE}/shared/myshared ]
then
. ${BASE}/shared/myshared
else
echo "Environment file not found"
exit 1
fi
MYNAME=$(uname -n)
if [ -d /volume12/zTools/Sync${MYNAME}/zTools/zShared ]
@ -75,6 +71,11 @@ then
BASE=/volume12/zTools/Sync${MYNAME}/zTools/zShared
fi
if [ -z ${BASE+x} ]
then
echo "Can not find BASE directory"
exit 1
fi
SHARED=${BASE}/shared