do nosync
This commit is contained in:
parent
7eedb510e0
commit
185a06d5dc
1 changed files with 4 additions and 4 deletions
|
@ -39,15 +39,15 @@ EOF
|
||||||
# define functions
|
# define functions
|
||||||
ckrepo () {
|
ckrepo () {
|
||||||
# check if remote repo is reachable
|
# check if remote repo is reachable
|
||||||
if $MYSHELLCONFIG_NOSYNC; then
|
if $MYSHELLCONFIG_GIT_SYNC; then
|
||||||
echo "no sync allowed from config" >&2
|
|
||||||
return 0
|
|
||||||
else
|
|
||||||
if $( timeout --foreground "${MYSHELLCONFIG_GIT_TIMEOUT}" $SGIT ls-remote >/dev/null 2>&1) ;then
|
if $( timeout --foreground "${MYSHELLCONFIG_GIT_TIMEOUT}" $SGIT ls-remote >/dev/null 2>&1) ;then
|
||||||
return 0
|
return 0
|
||||||
else
|
else
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
|
else
|
||||||
|
echo "no sync allowed from config" >&2
|
||||||
|
return 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue