diff options
Diffstat (limited to 'bench')
-rwxr-xr-x | bench | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -13,10 +13,9 @@ aoc_path=$script_path/$1/$2 data_path="$aoc_path/data/$4.txt" # Check it is correct -$script_path/check $1 $2 $3 $4 > /dev/null +$script_path/check $1 $2 $3 $4 >/dev/null [ ! $? ] && echo "Incorrect solution" && exit 1 - if [ $lang = "python" ]; then exec="python $aoc_path/python/main.py" elif [ $lang = "rust" ]; then |