diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-09-30 19:41:50 -0700 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-09-30 20:11:15 -0700 |
commit | 23b4126f10f3927a8d70517e04872aa4ebf1b502 (patch) | |
tree | 06ca08981449da5516c0bb9f1ea41b83ce304a9e /script | |
parent | c03d02d28e7d9e908fa0553006282184487d2c8c (diff) | |
download | samba-23b4126f10f3927a8d70517e04872aa4ebf1b502.tar.gz samba-23b4126f10f3927a8d70517e04872aa4ebf1b502.tar.bz2 samba-23b4126f10f3927a8d70517e04872aa4ebf1b502.zip |
autobuild: fixed the --tail option for new log locations
Diffstat (limited to 'script')
-rwxr-xr-x | script/autobuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/script/autobuild.py b/script/autobuild.py index f1e29a7a83..6f14845334 100755 --- a/script/autobuild.py +++ b/script/autobuild.py @@ -226,7 +226,7 @@ class buildlist: def start_tail(self): cwd = os.getcwd() cmd = "tail -f *.stdout *.stderr" - os.chdir(testbase) + os.chdir(gitroot) self.tail_proc = Popen(cmd, shell=True) os.chdir(cwd) |