Skip to content
Snippets Groups Projects
Commit 154ce617 authored by David Georg Reichelt's avatar David Georg Reichelt
Browse files

Create all labels, even if they are not used, to avoid error

parent 84d1b557
No related branches found
No related tags found
No related merge requests found
...@@ -30,9 +30,9 @@ function cleanupResults() { ...@@ -30,9 +30,9 @@ function cleanupResults() {
function createRLabels() { function createRLabels() {
# Create R labels # Create R labels
LABELS="" LABELS=""
for index in $MOOBENCH_CONFIGURATIONS for I in "${TITLE[@]}"
do do
title="${TITLE[$index]}" title="$I"
if [ "$LABELS" == "" ] ; then if [ "$LABELS" == "" ] ; then
LABELS="\"$title\"" LABELS="\"$title\""
else else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment