diff options
author | 2010-05-13 17:18:40 +0200 | |
---|---|---|
committer | 2010-05-13 17:18:40 +0200 | |
commit | 221d8e4728957b89c3ad850a18f743b174cbf899 (patch) | |
tree | c6c67b62f3f95eb5efe4f4e571139c57a6a86267 /tinderbox-restart.sh | |
parent | Avoid rebuilding avahi and nfs-utils, they are not strictly needed for the ti... (diff) | |
download | flameeyes-tinderbox-221d8e4728957b89c3ad850a18f743b174cbf899.tar.gz flameeyes-tinderbox-221d8e4728957b89c3ad850a18f743b174cbf899.tar.bz2 flameeyes-tinderbox-221d8e4728957b89c3ad850a18f743b174cbf899.zip |
Workaround ocaml-rebuild bug (#319553).
Diffstat (limited to 'tinderbox-restart.sh')
-rwxr-xr-x | tinderbox-restart.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tinderbox-restart.sh b/tinderbox-restart.sh index 54d6b53..b63257a 100755 --- a/tinderbox-restart.sh +++ b/tinderbox-restart.sh @@ -47,7 +47,8 @@ if emerge -u1 dev-lang/ocaml && fgrep -q '>>> emerge' /var/log/emerge.log; then dent "running #ocaml-rebuild" - /usr/sbin/ocaml-rebuild.sh -f + # Don't fail if ocaml-rebuild fails, because of bug #319553 + /usr/sbin/ocaml-rebuild.sh -f || true fi reset_emergelog |