From patchwork Thu Sep 10 13:30:09 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [autobuilder-helper, thud, 14/40] prepare-shared-repos: Really fix shell globbing From: Richard Purdie X-Patchwork-Id: 176335 Message-Id: <20200910133035.2044355-14-richard.purdie@linuxfoundation.org> To: yocto@lists.yoctoproject.org Date: Thu, 10 Sep 2020 14:30:09 +0100 Signed-off-by: Richard Purdie --- scripts/prepare-shared-repos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/prepare-shared-repos b/scripts/prepare-shared-repos index 2a2b343..8400d09 100755 --- a/scripts/prepare-shared-repos +++ b/scripts/prepare-shared-repos @@ -39,4 +39,4 @@ with tempfile.TemporaryDirectory(prefix="shared-repo-temp-", dir="/tmp") as temp if args.publish_dir: utils.publishrepo(tempdir, repo, args.publish_dir) - subprocess.check_call(["rsync", "-a", tempdir + "/*", args.sharedsrcdir], shell=True) + subprocess.check_call("rsync -a " + tempdir + "/* " + args.sharedsrcdir, shell=True)