diff options
| author | Gunnar Morling <gunnar.morling@googlemail.com> | 2024-01-02 19:35:54 +0100 |
|---|---|---|
| committer | Gunnar Morling <gunnar.morling@googlemail.com> | 2024-01-02 19:36:58 +0100 |
| commit | 0fa7f1ea650796d4902a4a8707a566bbcc0aa602 (patch) | |
| tree | b18cde21b8def86f45dc633f273ef1c091a4396b /evaluate.sh | |
| parent | a6c0f50ab93f356159277ddc4cb6038b990d91b6 (diff) | |
Updating evaluation scripts
Diffstat (limited to 'evaluate.sh')
| -rwxr-xr-x | evaluate.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/evaluate.sh b/evaluate.sh index 78b4183..7c8aa82 100755 --- a/evaluate.sh +++ b/evaluate.sh @@ -15,8 +15,15 @@ # limitations under the License. # +if [ -z "$1" ] + then + echo "Usage: evaluate.sh <fork name>" + exit 1 +fi + +mvn clean verify for i in {1..5} do - time ./calculate_average.sh + time ./calculate_average_$1.sh done |
