mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-08 17:28:20 +00:00
9 lines
184 B
Bash
9 lines
184 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
mkdir -p /app/configs/
|
||
|
cp -n /app/default-configs/* /app/configs/
|
||
|
mkdir -p /app/vanity/
|
||
|
cp -n /app/default-vanity/* /app/vanity/
|
||
|
cd /app/ && ./MasterServer
|