diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/toaster/bldcontrol/localhostbecontroller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py index a64e89b93b..e5f7c988c2 100644 --- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py +++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py | |||
@@ -75,7 +75,7 @@ class LocalhostBEController(BuildEnvironmentController): | |||
75 | def getGitCloneDirectory(self, url, branch): | 75 | def getGitCloneDirectory(self, url, branch): |
76 | """Construct unique clone directory name out of url and branch.""" | 76 | """Construct unique clone directory name out of url and branch.""" |
77 | if branch != "HEAD": | 77 | if branch != "HEAD": |
78 | return "_toaster_clones/_%s_%s" % (re.sub('[:/@%]', '_', url), branch) | 78 | return "_toaster_clones/_%s_%s" % (re.sub('[:/@+%]', '_', url), branch) |
79 | 79 | ||
80 | # word of attention; this is a localhost-specific issue; only on the localhost we expect to have "HEAD" releases | 80 | # word of attention; this is a localhost-specific issue; only on the localhost we expect to have "HEAD" releases |
81 | # which _ALWAYS_ means the current poky checkout | 81 | # which _ALWAYS_ means the current poky checkout |