summaryrefslogtreecommitdiff
path: root/tools/list-tileset-order
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2014-03-07 12:41:48 -0800
committerBen Longbons <b.r.longbons@gmail.com>2014-03-07 12:41:54 -0800
commit0ad0110f8e7f90452c2229fe0031ce68b7b3d1e4 (patch)
treed6c118cb5578652a48de3e0efaf9d4b02fc62a72 /tools/list-tileset-order
parent300be2981298f9939d06f8fdc45a254ea87f6506 (diff)
downloadclientdata-0ad0110f8e7f90452c2229fe0031ce68b7b3d1e4.tar.gz
clientdata-0ad0110f8e7f90452c2229fe0031ce68b7b3d1e4.tar.bz2
clientdata-0ad0110f8e7f90452c2229fe0031ce68b7b3d1e4.tar.xz
clientdata-0ad0110f8e7f90452c2229fe0031ce68b7b3d1e4.zip
Replace tools dir with symlink to the canonical tools repo
This could have been done a while ago, but was delayed in case someone updated their client-data without updating thier server-data.
Diffstat (limited to 'tools/list-tileset-order')
-rwxr-xr-xtools/list-tileset-order15
1 files changed, 0 insertions, 15 deletions
diff --git a/tools/list-tileset-order b/tools/list-tileset-order
deleted file mode 100755
index b8d3f85b..00000000
--- a/tools/list-tileset-order
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-DIR=${1:-maps}
-for MAP in $(ls "$DIR" | grep '\.tmx$' )
-do
- echo -n "${MAP%.tmx}:"
- grep '<tileset' "$DIR/$MAP" |
- while read TILESET
- do
- TILESET=${TILESET#*source=\"}
- TILESET=${TILESET%%.tsx\"*}
- TILESET=${TILESET##*/}
- echo -n " $TILESET"
- done
- echo
-done