Skip to content
Snippets Groups Projects

handle empty value in ph.perfadd

Merged Hahn Axel (hahn) requested to merge handle-empty-value-in-perfadd into master
1 file
+ 4
3
Compare changes
  • Side-by-side
  • Inline
+ 4
3
@@ -30,6 +30,7 @@
# 2020-03-05 v1.2 <axel.hahn@iml.unibe.ch> switch to ph.* helper functions
# 2020-09-01 v1.3 <axel.hahn@iml.unibe.ch> added ph.hasParamoption
# 2022-08-31 v1.4 <axel.hahn@iml.unibe.ch> shellfix corrections
# 2022-10-25 v1.5 <axel.hahn@iml.unibe.ch> handle empty value in ph.perfadd
# ======================================================================
@@ -437,9 +438,9 @@ function ph.perfadd(){
local _min=$5
local _max=$6
if [ -z "$_min" ]; then
_min=0
fi
test -z "$_value" && _value=0
test -z "$_min" && _min=0
echo "${_label}=${_value};${_w};${_c};${_min};${_max}" >>"${ph_perfdatafile}"
}
Loading