Skip to content

Commit

Permalink
use os.makedirs in the git source step, to create intervening directo…
Browse files Browse the repository at this point in the history
…ries
  • Loading branch information
Lital Natan authored and matthewryanscott committed Oct 8, 2009
1 parent 4b8c68c commit f77912c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildbot/slave/commands.py
Expand Up @@ -2159,7 +2159,7 @@ def _didInit(self, res):
return self.doVCUpdate()

def doVCFull(self):
os.mkdir(self._fullSrcdir())
os.makedirs(self._fullSrcdir())
return self._dovccmd(['init'], self._didInit)

def parseGotRevision(self):
Expand Down

0 comments on commit f77912c

Please sign in to comment.