summaryrefslogtreecommitdiff
path: root/util/rarian-sk-get-content-list.in
diff options
context:
space:
mode:
Diffstat (limited to 'util/rarian-sk-get-content-list.in')
-rw-r--r--util/rarian-sk-get-content-list.in23
1 files changed, 23 insertions, 0 deletions
diff --git a/util/rarian-sk-get-content-list.in b/util/rarian-sk-get-content-list.in
new file mode 100644
index 0000000..b123774
--- /dev/null
+++ b/util/rarian-sk-get-content-list.in
@@ -0,0 +1,23 @@
+#! /bin/sh
+
+# Simple wrapper to make calling scrollkeeper-get-cl easier
+# Copied and edited from scrollkeeper source tree
+
+usage()
+{
+ cat <<EOF
+Usage: `basename $0` <LOCALE>
+EOF
+
+ exit $1
+}
+
+if test $# -ne 1; then
+ usage 1
+fi
+
+# Assume we're installed in the same place as get-cl
+# If it ain't in the normal path, this is needed
+`dirname $0`/rarian-sk-get-cl $1 scrollkeeper_cl.xml
+
+exit $? \ No newline at end of file