forked from github/server
18 lines
415 B
Bash
Executable File
18 lines
415 B
Bash
Executable File
#!/bin/bash
|
|
(
|
|
[ "$PREVIEW" != "yes" ] && exit
|
|
[ -z "${ERESSEA}" ] && ERESSEA="$HOME/eressea"
|
|
|
|
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"
|
|
|