[latex3-commits] [l3svn] branch master updated: Return errorlevel from top-level check

noreply at latex-project.org noreply at latex-project.org
Wed Sep 23 18:34:10 CEST 2015


This is an automated email from the git hooks/post-receive script.

joseph pushed a commit to branch master
in repository l3svn.

The following commit(s) were added to refs/heads/master by this push:
       new  77b98c4   Return errorlevel from top-level check
77b98c4 is described below

commit 77b98c4cefdb3f5f1bee46b7045491b39aef73de
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Wed Sep 23 17:33:32 2015 +0100

    Return errorlevel from top-level check
    
    This is needed for any kind of automation.
---
 build.lua |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.lua b/build.lua
index c6994d0..5c3c39a 100644
--- a/build.lua
+++ b/build.lua
@@ -46,10 +46,10 @@ function main (target)
         break
       end
     end
-    return (errorlevel)
+    return errorlevel
   end
   if target == "check" then
-    dobundles (checkbundles, "check")
+    os.exit(dobundles(checkbundles, "check"))
   elseif target == "clean" then
     print ("Cleaning up")
     dobundles (bundles, "clean")

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the latex3-commits mailing list