16 lines
311 B
Bash
16 lines
311 B
Bash
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
: "${ACEVO_APP_ID:=4564210}"
|
|
|
|
# Install/update anonymously
|
|
"${STEAMCMD_DIR}/steamcmd.sh" \
|
|
+login anonymous \
|
|
+force_install_dir "${ACEVO_INSTALL_DIR}" \
|
|
+app_update "${ACEVO_APP_ID}" validate \
|
|
+quit
|
|
|
|
# Start Emperor Servers AC Evo Server Manager
|
|
cd /app
|
|
node dist/index.js
|