#!/bin/sh

dir="$(dirname "$0")"
wdir="$(realpath "$dir")"

olddir="$(pwd)"
cd "$wdir" || exit $?
tar -zcvf test_suite_$(date +%F).tar.gz test_suite/*.osu
res=$?
cd "$olddir"
exit $res
