summaryrefslogtreecommitdiffstats
path: root/website/rebuild.sh
blob: b09df153b71d295fa5e2d218adc1c29336b9fc57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh -

ttree=/usr/bin/ttree
conf=templates/ttree.conf

[ -x "$ttree" ] || {
    echo "'ttree' is missing, you need to install the 'perl-Template-Toolkit' package"
    exit 1
}

[ -f "$conf" ] || {
    echo "configuration file missing, you are running this from the wrong directory"
    exit 1
}

"$ttree" -f "$conf"