#!/bin/bash

git pull
php artisan migrate
php artisan translations:import
php artisan translations:export --all
if  command -v supervisorctl &> /dev/null
then
    sudo supervisorctl restart all
    exit
fi

echo 'Doneeeee'



