summaryrefslogtreecommitdiff
path: root/util/rarian-sk-get-extended-content-list.in
blob: a20444afaf7f7b56d5e13d106b6bc7bd11d19443 (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 (extended) 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_extended_cl.xml

exit $?