forked from dan/liminix
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:
parent
46769563b7
commit
8e5f3e29a7
@ -3,7 +3,7 @@ mkdir -p $out/${name}
|
|||||||
|
|
||||||
writepath(){
|
writepath(){
|
||||||
mkdir -p $(dirname $1)
|
mkdir -p $(dirname $1)
|
||||||
echo $2 > $1
|
if test -n "$2" ; then ( echo $2 > $1 ) ;fi
|
||||||
}
|
}
|
||||||
if test -n "$propertiesText"; then
|
if test -n "$propertiesText"; then
|
||||||
mkdir $out/.properties
|
mkdir $out/.properties
|
||||||
|
Loading…
Reference in New Issue
Block a user