forked from github/server
Merge remote-tracking branch 'upstream/develop' into develop
This commit is contained in:
commit
132ac0a38a
|
@ -25,9 +25,9 @@ cd $SOURCE
|
|||
rm -rf crypto tolua
|
||||
git fetch || abort "failed to update source. do you have local changes?"
|
||||
[ -z $1 ] || git checkout $1
|
||||
git pull
|
||||
git pull -q
|
||||
git submodule update
|
||||
s/build || abort "build failed."
|
||||
s/build > /dev/null || abort "build failed."
|
||||
}
|
||||
|
||||
function assert_file() {
|
||||
|
@ -79,7 +79,7 @@ SUPP="$SOURCE/share/debian-7_8.supp"
|
|||
SERVER="$SOURCE/Debug/eressea/eressea"
|
||||
VALGRIND=$(which valgrind)
|
||||
if [ ! -z $VALGRIND ]; then
|
||||
SERVER="$VALGRIND --suppressions=$SUPP --error-exitcode=1 --leak-check=no $SERVER"
|
||||
SERVER="$VALGRIND --quiet --suppressions=$SUPP --error-exitcode=1 --leak-check=no $SERVER"
|
||||
fi
|
||||
$SERVER -v$verbose -t$turn $SOURCE/scripts/run-turn.lua
|
||||
let turn=$turn+1
|
||||
|
@ -160,7 +160,7 @@ case "$1" in
|
|||
done
|
||||
if [ $sent -eq 0 ]; then
|
||||
if [ -e ../$factions ]; then
|
||||
for faction in $(cat ../$factions) ; do
|
||||
for faction in $(grep -v -E '^#' ../$factions) ; do
|
||||
send $faction
|
||||
done
|
||||
fi
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
#ifndef ERESSEA_VERSION
|
||||
/* the version number, if it was not passed to make with -D */
|
||||
#define ERESSEA_VERSION "3.11.0"
|
||||
#define ERESSEA_VERSION "3.12.0"
|
||||
#endif
|
||||
|
||||
const char *eressea_version(void) {
|
||||
|
|
Loading…
Reference in New Issue