do nosync

This commit is contained in:
Jakobus Schürz 2020-03-04 11:10:18 +01:00
parent 7eedb510e0
commit 185a06d5dc

View file

@ -39,15 +39,15 @@ EOF
# define functions
ckrepo () {
# check if remote repo is reachable
if $MYSHELLCONFIG_NOSYNC; then
echo "no sync allowed from config" >&2
return 0
else
if $MYSHELLCONFIG_GIT_SYNC; then
if $( timeout --foreground "${MYSHELLCONFIG_GIT_TIMEOUT}" $SGIT ls-remote >/dev/null 2>&1) ;then
return 0
else
return 1
fi
else
echo "no sync allowed from config" >&2
return 0
fi
}