diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-06-03 16:45:09 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-06-03 16:45:09 +0200 |
commit | 57a045df088b607298f99833b1738274a7300ea1 (patch) | |
tree | 966596de5f607bcbaab411c40db02d888ddca08d | |
parent | fda62ff6877a134eb86f7dd7769d8f49e8b045ca (diff) | |
download | jenkins.debian.net-57a045df088b607298f99833b1738274a7300ea1.tar.xz |
reproducible Debian: more robust quoting
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_html_dashboard.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh index e92872f3..c0f0d673 100755 --- a/bin/reproducible_html_dashboard.sh +++ b/bin/reproducible_html_dashboard.sh @@ -346,7 +346,7 @@ write_build_performance_stats() { done write_page "</tr><tr><td class=\"left\">Build jobs currently down due to remote node problems</td>" for ARCH in ${ARCHS} ; do - write_page "<td>$(ps fax|egrep -B 1 "sleep .*\.1337m"|grep -c $ARCH)</td>" + write_page "<td>$(ps fax|egrep -B 1 'sleep .*\.1337m'|grep -c $ARCH)</td>" done write_page "</tr><tr><td class=\"left\">Build jobs currently running diffoscope</td>" for ARCH in ${ARCHS} ; do |