#!/bin/bash

find . -type d -print0 | sudo xargs -0 chmod 755
find . -type f -print0 | sudo xargs -0 chmod 644
sudo chmod -R 777 ./jlr/web/assets/ ./jlr/web/uploads ./jlr/runtime/  deploy.sh cleanup.sh

mv htaccess .htaccess

mkdir ../jlrsystem
cp -r . ../jlrsystem
rm -rf ../jlrsystem/.git
cd ../jlrsystem

zip -r ../jlrsystem.zip .
cd ../jlr-system
rm -r ../jlrsystem

sudo chmod -R 777 .
mv .htaccess htaccess
