19 lines
487 B
Bash
19 lines
487 B
Bash
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
cp -r /var/www/app/. /app
|
|
|
|
# The Invoice Ninja logo on PDF invoices is always loaded from upstream's
|
|
# server, despite the APP_URL setting.
|
|
sed -i \
|
|
-e 's@invoicing.co/images/new_logo.png@invoiceninja.pyrocufflink.blue/images/logo.png@' \
|
|
/app/app/Utils/HtmlEngine.php
|
|
|
|
chown -R invoiceninja:invoiceninja /app
|
|
|
|
if [ "$(stat -c %u /storage)" -ne "$(id -u invoiceninja)" ]; then
|
|
chown -R invoiceninja:invoiceninja /storage
|
|
chmod -R u=rwx,go= /storage
|
|
fi
|