diff mbox series

[8/9] fetch2/svn: remove shell quotes from the tar exclusion

Message ID 20260625070750.2757558-9-anders.heimer@est.tech
State New
Headers show
Series Follow-up fixes for command argument conversions | expand

Commit Message

Anders Heimer June 25, 2026, 7:07 a.m. UTC
Signed-off-by: Anders Heimer <anders.heimer@est.tech>
---
 lib/bb/fetch2/svn.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/lib/bb/fetch2/svn.py b/lib/bb/fetch2/svn.py
index 84e15c02d..973f76f00 100644
--- a/lib/bb/fetch2/svn.py
+++ b/lib/bb/fetch2/svn.py
@@ -170,7 +170,7 @@  class Svn(FetchMethod):
             if scmdata == "keep":
                 tar_flags = []
             else:
-                tar_flags = ["--exclude='.svn'"]
+                tar_flags = ["--exclude=.svn"]
 
             # tar them up to a defined filename
             runfetchcmd(['tar'] + tar_flags + ['-czf', ud.localpath, ud.path_spec], d,