Compare commits
2 commits
62e8631833
...
97a9ba1c23
Author | SHA1 | Date | |
---|---|---|---|
97a9ba1c23 | |||
b04e9c17f9 |
2 changed files with 8 additions and 1 deletions
2
composer.lock
generated
2
composer.lock
generated
|
@ -4,7 +4,7 @@
|
||||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||||
"This file is @generated automatically"
|
"This file is @generated automatically"
|
||||||
],
|
],
|
||||||
"content-hash": "62318b0dffdbca25b349863cf75ea367",
|
"content-hash": "197c6f07c2e08a57fd28c0f12b8d438b",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "abraham/twitteroauth",
|
"name": "abraham/twitteroauth",
|
||||||
|
|
7
scripts/retain-custom-htaccess.sh
Executable file
7
scripts/retain-custom-htaccess.sh
Executable 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
|
Loading…
Reference in a new issue