From 785e7e4ca82706230644bb0500660ee51001b24f Mon Sep 17 00:00:00 2001 From: Curtis Conard Date: Wed, 19 Jan 2022 20:05:45 -0500 Subject: [PATCH] Handle files with spaces in the name --- tools/plugin-release | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/plugin-release b/tools/plugin-release index e4c2215..1d79dfc 100755 --- a/tools/plugin-release +++ b/tools/plugin-release @@ -293,6 +293,7 @@ def _do_build(repo, ver): append = False break if append: + if " " in ls_file: ls_file = "\""+ls_file+"\"" paths.append(ls_file) archive_cmd_pattern = 'git archive --prefix=%s/ %s %s | bzip2 > %s'