Using relative path for the master git repo

This commit is contained in:
Sergio Durigan Junior 2015-01-13 19:08:31 -05:00
parent a4a8ad0c5c
commit c8b86153f7

View file

@ -65,7 +65,7 @@ from buildbot.changes.gitpoller import GitPoller
c['change_source'] = []
c['change_source'].append(GitPoller(
repourl = r'git://sourceware.org/git/binutils-gdb.git',
workdir = r'/home/buildbot/buildbot-master-binutils-gdb',
workdir = os.path.expanduser (os.path.join ('~/', 'buildbot-master-binutils-gdb')),
branches = [ r'master' ],
pollinterval = 60 * 3))