From 707b507ca6af727edb07ad82399c455a798de88c Mon Sep 17 00:00:00 2001
From: FruitieX <rasse@rasse-lappy.localdomain>
Date: Sat, 24 Jul 2010 20:14:53 +0300
Subject: [PATCH] change update-cvarcount.sh to use balanceXonotic.cfg

---
 update-cvarcount.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/update-cvarcount.sh b/update-cvarcount.sh
index 10bd39d94b..539c0c1df1 100755
--- a/update-cvarcount.sh
+++ b/update-cvarcount.sh
@@ -1,10 +1,10 @@
 #!/bin/sh
 
-countw=`awk '/^seta? g_/ { print $2; }' balance.cfg       | sort -u | tr -d '\r' | git hash-object --stdin | cut -c 1-32`
+countw=`awk '/^seta? g_/ { print $2; }' balanceXonotic.cfg       | sort -u | tr -d '\r' | git hash-object --stdin | cut -c 1-32`
 for b in balance*.cfg; do
 	countb=`awk '/^seta? g_/ { print $2; }' "$b"  | sort -u | tr -d '\r' | git hash-object --stdin | cut -c 1-32`
 	if [ "$countw" != "$countb" ]; then
-		echo "Mismatch between balance.cfg and $b. Aborting."
+		echo "Mismatch between balanceXonotic.cfg and $b. Aborting."
 		exit 1
 	fi
 done
-- 
2.39.5