diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-03 14:47:11 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-03 14:47:11 +0100 |
commit | db99f75854f53c32975f8431b5b70d825dc261f6 (patch) | |
tree | f9807d7393502b3aae03c1d5885809b488f674ac | |
parent | 95e2ab1b9ae02cf9a0d3fff29c7fbd6c5018777e (diff) | |
download | jenkins.debian.net-db99f75854f53c32975f8431b5b70d825dc261f6.tar.xz |
fix syntax
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index fa938b3f..ae74c54d 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -180,7 +180,7 @@ FIELDS[0]="datum, reproducible, unreproducible, FTBFS, other, untested" FIELDS[1]="datum" for i in reproducible unreproducible FTBFS other ; do for j in $SUITES ; do - FIELDS[1]="$FIELDS[1], ${i}_${j}" + FIELDS[1]="${FIELDS[1]}, ${i}_${j}" done done FIELDS[2]="datum, oldest_reproducible, oldest_unreproducible, oldest_FTBFS" |