You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
if [ -f ~/.gitconfig ]
|
|
then
|
|
echo "We can do a git pull - git user configged."
|
|
#git pull origin master
|
|
else
|
|
echo "We can not update the Odoo code base - no git user configged"
|
|
fi
|
|
echo "Done updating."
|