From 7cd15a349354917d1f472ffb9b7c6484399d6ba9 Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Tue, 21 Mar 2023 19:09:27 +0100 Subject: [PATCH] Update helper_stats_graphs.yaml --- .github/workflows/helper_stats_graphs.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/helper_stats_graphs.yaml b/.github/workflows/helper_stats_graphs.yaml index e26351f9b..40dc67f5a 100644 --- a/.github/workflows/helper_stats_graphs.yaml +++ b/.github/workflows/helper_stats_graphs.yaml @@ -180,6 +180,7 @@ jobs: print str } }' StatsTmp > StatsTmp2 && mv StatsTmp2 StatsTmp + cd $FOLDER || true # Plot graph ( gnuplot-nox -persist <<-EOFMarker set title "$TITLE" @@ -191,7 +192,7 @@ jobs: set datafile sep ' ' set autoscale set terminal png size 500,300 - set output "$FOLDER/stats.png" + set output "stats.png" set term png tiny plot for [i=2:*] 'StatsTmp' using 1:i w l title columnhead(i) smooth csplines EOFMarker @@ -205,11 +206,12 @@ jobs: set datafile sep ' ' set autoscale set terminal png size 500,300 - set output "$FOLDER/stats.png" + set output "stats.png" set term png tiny plot for [i=2:*] 'StatsTmp' using 1:i w l title columnhead(i) EOFMarker ) + cd .. || true fi done # Clean files