server/process/cron/preview.cron

21 lines
497 B
Bash
Executable File

#!/bin/bash
(
[ "$PREVIEW" != "yes" ] && exit
[ -z "${ERESSEA}" ] && ERESSEA="$HOME/eressea"
eval "$(luarocks path)"
export LUA_PATH="${ERESSEA}/git/scripts/?.lua;$LUA_PATH"
branch="develop"
if [ -e "${ERESSEA}/build/.preview" ]; then
branch=$(cat "${ERESSEA}/build/.preview")
fi
SRC="${ERESSEA}/git"
"${SRC}/s/preview" build "$branch" || exit $?
for game in "$@" ; do
"${SRC}/s/preview" -g "$game" run && \
"${SRC}/s/preview" -g "$game" send
done
) | tee -a "$HOME/log/preview.cron.log"