#!/bin/bash
#
# create the directory and add header to the data file
# should not create the file if it already exists ...

item=$1

mkdir -p $item/plots/
echo "#date, total, new, incomplete, confirmed, triaged, in progress, fix committed, fix released, invalid, won't fix, undecided, wishlist, low, medium, high, critical" > $item/$item.data
