From fe364aff6f2e6b7298eccd8cc440dac554f7eb1d Mon Sep 17 00:00:00 2001 From: cfaeth Date: Tue, 3 May 2022 12:53:37 +0200 Subject: [PATCH] Fixed error messages in run.sh --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index ce4f591..19c8d8c 100755 --- a/run.sh +++ b/run.sh @@ -10,13 +10,13 @@ package_jar="${target_dir}/conll-rdf-1.0-SNAPSHOT-jar-with-dependencies.jar" # if the number of arguments is equal to 0, no class name is provided if [ $# -eq 0 ]; then - echo "Please give the name of the conll-rdf class you want to run" + echo "[ERROR] CoNLL-RDF: Please give the name of the conll-rdf class you want to run" exit 1 fi # Check for presence of packaged jar if [ ! -e "${package_jar}" ]; then - echo "Please make sure to run package.sh first, and verify the jar-with-dependencies is present in the target folder" + echo "[ERROR] CoNLL-RDF: Please make sure to run conll-rdf/compile.sh first, and verify the jar-with-dependencies is present in the target folder" exit 1 fi