From: Rudolf Polzer Date: Wed, 29 Sep 2010 13:35:53 +0000 (+0200) Subject: skip "archived" branches X-Git-Tag: xonotic-v0.1.0preview~170 X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fxonotic.git;a=commitdiff_plain;h=852e69fb36c990380784e54315ee9f6126e0f5cc skip "archived" branches --- diff --git a/misc/tools/xonotic-map-compiler-autobuild b/misc/tools/xonotic-map-compiler-autobuild index 3289aef9..98473d63 100755 --- a/misc/tools/xonotic-map-compiler-autobuild +++ b/misc/tools/xonotic-map-compiler-autobuild @@ -243,6 +243,11 @@ case "$1" in build) cd data/xonotic-maps.pk3dir git for-each-ref 'refs/remotes' | while read -r HASH TYPE REFNAME; do + case "$REFNAME" in + */archived/*) + continue + ;; + esac if [ -f "$build_cachedir/$HASH" ]; then continue fi @@ -257,6 +262,11 @@ case "$1" in screenshot) cd data/xonotic-maps.pk3dir git for-each-ref 'refs/remotes' | while read -r HASH TYPE REFNAME; do + case "$REFNAME" in + */archived/*) + continue + ;; + esac if [ -f "$screenshot_cachedir/$HASH" ]; then continue fi