29 lines
645 B
Bash
29 lines
645 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# shellcheck disable=2043
|
|
#
|
|
# -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
|
|
|
|
# ===================================================
|
|
# 01. Attempt to load global DayZ values
|
|
# ===================================================
|
|
echo "Starting, attempting to load globals.sh"
|
|
|
|
GLOBALS_FILE="$PWD/lib/globals.sh"
|
|
if [ -e "$GLOBALS_FILE" ] ; then
|
|
chmod +x "$GLOBALS_FILE"
|
|
. "$GLOBALS_FILE"
|
|
else
|
|
die "Could not load: $GLOBALS_FILE"
|
|
fi
|
|
|
|
# ===================================================
|
|
# 02. Local script variables
|
|
# ===================================================
|
|
|
|
main() {
|
|
:
|
|
}
|
|
|
|
main "$@"
|