diff options
Diffstat (limited to 'scripts/lib/devtool')
-rw-r--r-- | scripts/lib/devtool/upgrade.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/lib/devtool/upgrade.py b/scripts/lib/devtool/upgrade.py index 4cfab0cb19..073002ba49 100644 --- a/scripts/lib/devtool/upgrade.py +++ b/scripts/lib/devtool/upgrade.py | |||
@@ -252,7 +252,7 @@ def _extract_new_source(newpv, srctree, no_patch, srcrev, srcbranch, branch, kee | |||
252 | 252 | ||
253 | (stdout,_) = __run('git ls-files --modified --others --exclude-standard') | 253 | (stdout,_) = __run('git ls-files --modified --others --exclude-standard') |
254 | for f in stdout.splitlines(): | 254 | for f in stdout.splitlines(): |
255 | __run('git add "%s"' % f) | 255 | __run('git add -A "%s"' % f) |
256 | 256 | ||
257 | useroptions = [] | 257 | useroptions = [] |
258 | oe.patch.GitApplyTree.gitCommandUserOptions(useroptions, d=rd) | 258 | oe.patch.GitApplyTree.gitCommandUserOptions(useroptions, d=rd) |