From 2b3f25b1a68fc21321c3cc044b334717304475e5 Mon Sep 17 00:00:00 2001 From: Erik Martin-Dorel Date: Wed, 23 Jun 2021 14:17:11 +0200 Subject: [PATCH] fix: Remove redundant build step --- tests/runtests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/runtests.sh b/tests/runtests.sh index 48ddeafbc..84cd74e99 100755 --- a/tests/runtests.sh +++ b/tests/runtests.sh @@ -51,8 +51,8 @@ run_server () { -v "$(pwd)"/"$dir":/home/learn-ocaml/actual \ -v "$SYNC":/sync -v "$REPO":/repository \ learn-ocaml /bin/sh \ - -c "learn-ocaml --sync-dir=/sync --repo=/repository build && -learn-ocaml --sync-dir=/sync --repo=/repository build serve") + -c "learn-ocaml --sync-dir=/sync --repo=/repository build && +learn-ocaml --sync-dir=/sync --repo=/repository serve") # Wait for the server to be initialized ./wait-for-it.sh localhost:8080 -s -t 10 -- echo 'learn-ocaml started.'