mirror of
https://github.com/typemill/typemill.git
synced 2025-10-19 08:36:23 +02:00
16 lines
303 B
Bash
16 lines
303 B
Bash
#!/bin/sh
|
|
|
|
find /var/www/html -type d -empty -exec cp -R /tmp/* /var/www/html/ \;
|
|
|
|
cp -R /src/* /var/www/html/
|
|
cp -R /tmp/* /var/www/html/
|
|
|
|
/usr/local/bin/install-composer && \
|
|
./composer.phar update
|
|
|
|
usermod -u $PUID www-data
|
|
groupmod -g $PGID www-data
|
|
|
|
/usr/local/bin/adjust-rights
|
|
|
|
apache2-foreground |