mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-11-07 11:17:23 +01:00
19 lines
382 B
Bash
Executable File
19 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
set -eou pipefail
|
|
|
|
if [[ -f /run/secrets/username ]]; then
|
|
USERNAME=$(cat /run/secrets/username)
|
|
fi
|
|
|
|
if [[ -f /run/secrets/username ]]; then
|
|
TOKEN=$(cat /run/secrets/token)
|
|
fi
|
|
|
|
if [[ -z $TOKEN ]]; then
|
|
set -- "$(jq -j ".username, \" \", .token" "$CONFIG/server-settings.json")"
|
|
USERNAME=$1
|
|
TOKEN=$2
|
|
fi
|
|
|
|
./update-mods.sh "$VERSION" "$MODS" "$USERNAME" "$TOKEN"
|