buildbot_slave: fix path to tail.

This commit is contained in:
Jessica Hamilton
2014-06-20 05:38:47 +00:00
parent 6b27300332
commit bc318791c0
2 changed files with 23 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
From 339c07d8cef40e19d98a915ecc06929c097865fc Mon Sep 17 00:00:00 2001
From: Jessica Hamilton <jessica.l.hamilton@gmail.com>
Date: Fri, 20 Jun 2014 04:58:54 +0000
Subject: logwatcher.py: fix path to tail on Haiku
diff --git a/buildslave/scripts/logwatcher.py b/buildslave/scripts/logwatcher.py
index ff3e119..fb20aba 100644
--- a/buildslave/scripts/logwatcher.py
+++ b/buildslave/scripts/logwatcher.py
@@ -62,7 +62,7 @@ class LogWatcher(LineOnlyReceiver):
# been seen within 10 seconds, and with ReconfigError if the error
# line was seen. If the logfile could not be opened, it errbacks with
# an IOError.
- self.p = reactor.spawnProcess(self.pp, "/usr/bin/tail",
+ self.p = reactor.spawnProcess(self.pp, "/bin/tail",
("tail", "-f", "-n", "0", self.logfile),
env=os.environ,
)
--
1.8.3.4