#!/bin/bash

if [[ "$#" -ne 3 ]]; then
    echo "Usage: ./report.sh <filename> <nexp> <lang>"
    exit 1
fi

DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )

source ${DIR}/bin/activate
python3 ${DIR}/report.py -f $1 -n $2 -l $3
