From de741ca0fe2d429fefbd89c404738b8e26e65532 Mon Sep 17 00:00:00 2001 From: Robin Sheat Date: Tue, 10 Nov 2015 16:17:26 +1300 Subject: [PATCH] Bug 14532: fixed the "empty member" problem PS: thanks to Olly Betts for knowing weird bash constuctions. Signed-off-by: Jonathan Druart Signed-off-by: Brendan Gallagher brendan@bywatersolutions.com --- debian/scripts/koha-dump | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/scripts/koha-dump b/debian/scripts/koha-dump index 5f4676f655..a67a2c8d87 100755 --- a/debian/scripts/koha-dump +++ b/debian/scripts/koha-dump @@ -90,7 +90,7 @@ dump_instance() "etc/koha/sites/$name" \ "etc/apache2/sites-available/$instancefile" \ "etc/apache2/sites-enabled/$instancefile" \ - "var/log/koha/$name" "$zebra_files" + "var/log/koha/$name" ${zebra_files:+"$zebra_files"} [ "$quiet" = "no" ] && echo "Done." } -- 2.20.1