summaryrefslogtreecommitdiff
path: root/tools/build_dashboards.sh
blob: d638f190327c3182359af54a85d0309eac518bf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
#
# Process the dashboard files and emit the URLs

creator_dir=$1
dashboard_dir=$2

cd $creator_dir

for f in $dashboard_dir/*.dash
do
    echo '----------------------------------------'
    echo $(basename $f .dash)
    echo '----------------------------------------'
    ./gerrit-dash-creator $f
done