From d4cc195c794c89fbc76f9c1e5de0eb9d1083eb2b Mon Sep 17 00:00:00 2001 From: megri Date: Tue, 13 Jun 2017 22:55:42 +0200 Subject: Detect missing shellcheck and warn user during test --- test/test.scala | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/test/test.scala b/test/test.scala index 376d6bf..13e477f 100644 --- a/test/test.scala +++ b/test/test.scala @@ -35,8 +35,15 @@ object Main{ val p = pb.start val out = new java.io.InputStreamReader(p.getInputStream) val errors = Iterator.continually(out.read).takeWhile(_ != -1).map(_.toChar).mkString - if( p.waitFor != 0 ){ - throw new Exception("Linting error in ./cbt bash launcher script:\n" + errors) + p.waitFor() match { + case 0 => + () + + case 127 => // bash exit code: not found + System.err.println( "Shellcheck not found. Your build may fail during ci-build" ) + + case _ => + throw new Exception( "Linting error in ./cbt bash launcher script:\n" + errors ) } } else System.err.println( "Skipping shellcheck" ) -- cgit v1.2.3