1
0

don't write service properties with null values

because serialisation causes them to become empty strings
which are not null
This commit is contained in:
Daniel Barlow 2025-04-12 23:39:13 +01:00
parent 46769563b7
commit 8e5f3e29a7

View File

@ -3,7 +3,7 @@ mkdir -p $out/${name}
writepath(){
mkdir -p $(dirname $1)
echo $2 > $1
if test -n "$2" ; then ( echo $2 > $1 ) ;fi
}
if test -n "$propertiesText"; then
mkdir $out/.properties