#!/bin/sh

# Make Folders Writable

# After the deployment finished, give the full 0777 permissions
# to some folders that should be writable, such as the storage/
# or bootstrap/cache/, for example.

sudo chmod -R 777 storage/
sudo chmod -R 777 bootstrap/cache/
sudo chmod 777 storage/logs/laravel.log
sudo chmod 777 storage/framework/cache
