Project

General

Profile

1 88 aaronmk
#!/bin/bash
2
# Sets the correct test output to be the generated test output
3
# Usage: self file
4
5
selfDir="$(dirname -- "$0")"
6
cd "$selfDir"
7
8
file="$(basename -- "$1")"
9 90 aaronmk
cp -p "test_output/$file" "$file"