summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
diff options
context:
space:
mode:
Diffstat (limited to 'bitbake/lib/toaster/bldcontrol/localhostbecontroller.py')
-rw-r--r--bitbake/lib/toaster/bldcontrol/localhostbecontroller.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
index a8d83986fe..3ee68ae47a 100644
--- a/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
+++ b/bitbake/lib/toaster/bldcontrol/localhostbecontroller.py
@@ -183,7 +183,7 @@ class LocalhostBEController(BuildEnvironmentController):
183 def getGitCloneDirectory(self, url, branch): 183 def getGitCloneDirectory(self, url, branch):
184 """Construct unique clone directory name out of url and branch.""" 184 """Construct unique clone directory name out of url and branch."""
185 if branch != "HEAD": 185 if branch != "HEAD":
186 return "_toaster_clones/_%s_%s" % (re.sub('[:/]', '_', url), branch) 186 return "_toaster_clones/_%s_%s" % (re.sub('[:/@%]', '_', url), branch)
187 187
188 # word of attention; this is a localhost-specific issue; only on the localhost we expect to have "HEAD" releases 188 # word of attention; this is a localhost-specific issue; only on the localhost we expect to have "HEAD" releases
189 # which _ALWAYS_ means the current poky checkout 189 # which _ALWAYS_ means the current poky checkout