From 99fa1462538e6482933e09152882956393750d85 Mon Sep 17 00:00:00 2001 From: Josh Meyer Date: Thu, 15 Jul 2021 09:54:54 -0400 Subject: [PATCH] Fix wording in error message --- Dockerfile.train | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.train b/Dockerfile.train index d1c934425..b4a2926d3 100644 --- a/Dockerfile.train +++ b/Dockerfile.train @@ -22,7 +22,7 @@ RUN cd /code/kenlm && \ cmake .. && \ make -j $(nproc) || \ ( echo "ERROR: Failed to build KenLM."; \ - echo "ERROR: You must update the kenlm submodule on host before building this Dockerfile."; \ + echo "ERROR: Make sure you update the kenlm submodule on host before building this Dockerfile."; \ echo "ERROR: $ cd STT; git submodule update --init kenlm"; \ exit 1; )