forked from coop-cloud/fluffychat
7 lines
201 B
Bash
Executable File
7 lines
201 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Do fixups to the deploy to make up for minor weirdnesses in the FluffyChat image.
|
|
if [ ! -e /usr/share/nginx/html/web ]; then
|
|
ln -s /usr/share/nginx/html/ /usr/share/nginx/html/web
|
|
fi
|