From 0f887589c279ce07692b4d8e118954a9d214ca45 Mon Sep 17 00:00:00 2001 From: Daniel Ammann Date: Fri, 17 Mar 2023 18:03:54 +0100 Subject: fetch2/sftp: Fix fetching URIs with spaces Spaces can be used in URIs with %20, but the URI needs to be quoted. Signed-off-by: Daniel Ammann Signed-off-by: Alexandre Belloni --- lib/bb/fetch2/sftp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bb/fetch2/sftp.py b/lib/bb/fetch2/sftp.py index f87f292e5..7884cce94 100644 --- a/lib/bb/fetch2/sftp.py +++ b/lib/bb/fetch2/sftp.py @@ -103,7 +103,7 @@ class SFTP(FetchMethod): if path[:3] == '/~/': path = path[3:] - remote = '%s%s:%s' % (user, urlo.hostname, path) + remote = '"%s%s:%s"' % (user, urlo.hostname, path) cmd = '%s %s %s %s' % (basecmd, port, remote, lpath) -- cgit 1.2.3-korg