Compare commits

..

2 commits

2 changed files with 8 additions and 1 deletions

2
composer.lock generated
View file

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "62318b0dffdbca25b349863cf75ea367",
"content-hash": "197c6f07c2e08a57fd28c0f12b8d438b",
"packages": [
{
"name": "abraham/twitteroauth",

View file

@ -0,0 +1,7 @@
#!/bin/bash
if [ -f ./web/.htaccess.custom ]
then
cd web && mv .htaccess .htaccess.default && cp .htaccess.custom .htaccess
git diff -s --exit-code .htaccess.default || echo 'NOTE: .htaccess.default file has changed! Be sure to integrate latest updates into .htaccess and .htaccess.custom, then commit all three files. For example, meld web/.htaccess.custom web/.htaccess.default'
fi