From 01e443a844f86ae192e00eeb947f808d93a7ee05 Mon Sep 17 00:00:00 2001 From: Petr Pucil Date: Sat, 19 Dec 2020 12:09:08 +0100 Subject: [PATCH] Stop using 'travis-fold' in 'build-compiler' See https://github.com/kaitai-io/kaitai_struct/issues/827#issuecomment-730414159 --- build-compiler | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build-compiler b/build-compiler index 7854a5315..f40f9a17a 100755 --- a/build-compiler +++ b/build-compiler @@ -1,8 +1,7 @@ #!/bin/sh . ./config -TEST_DIR=$(pwd) cd "$COMPILER_DIR" -"$TEST_DIR/travis-fold" 'build-jvm-compiler' sbt compilerJVM/stage -"$TEST_DIR/travis-fold" 'build-js-compiler' sbt compile fastOptJS +sbt compilerJVM/stage +sbt compile fastOptJS