浏览代码

Fixed premature exit

git-svn-id: https://svn.inf.ethz.ch/svn/lecturers/a2/trunk@8136 8c9fc860-2736-0410-a75d-ab315db34111
negelef 7 年之前
父节点
当前提交
c5e1225894
共有 2 个文件被更改,包括 2 次插入2 次删除
  1. 1 1
      tools/builds/cron.hourly/a2-builds
  2. 1 1
      tools/builds/cron.hourly/fox-compiler

+ 1 - 1
tools/builds/cron.hourly/a2-builds

@@ -11,7 +11,7 @@ update || exit 1
 process ()
 {
 	local target="$1"
-	check && break
+	check && exit 0
 	local status="Building" output=""
 	notify
 	trap notify exit

+ 1 - 1
tools/builds/cron.hourly/fox-compiler

@@ -11,7 +11,7 @@ update || exit 1
 process ()
 {
 	local target="$1"
-	check && break
+	check && exit 0
 	local status="Building" output=""
 	notify
 	trap notify exit