aboutsummaryrefslogtreecommitdiff
path: root/test/test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/test.scala')
-rw-r--r--test/test.scala11
1 files 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" )