summaryrefslogtreecommitdiff
path: root/util/rarian-sk-get-content-list.in
diff options
context:
space:
mode:
authorLorry Tar Creator <lorry-tar-importer@baserock.org>2008-09-01 18:44:56 +0000
committer <>2013-07-02 12:44:56 +0000
commitbd4e1730fe4d7878c4e5e2c13ea489f59e7e0f27 (patch)
tree5e605cc37a7e484e7008c7934f61e2cd25a0d57b /util/rarian-sk-get-content-list.in
downloadrarian-master.tar.gz
Imported from /home/lorry/working-area/delta_rarian/rarian-0.8.1.tar.bz2.HEADrarian-0.8.1master
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