#!/bin/sh
echo '1) git pull'
git pull

echo '2) app/console es:db:update'
php app/console es:db:update

echo '3) assets:install'
php app/console assets:install

echo 'OK :)'

