summaryrefslogtreecommitdiff
path: root/util/rarian-sk-get-content-list.in
blob: b123774e2cc27c971bfbaaa6f8eb4213cf0ebb9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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 $?