From 063e329291928e65b22c4b65d76324599ec6178d Mon Sep 17 00:00:00 2001 From: Anh <an7s@virginia.edu> Date: Wed, 13 Jun 2018 20:42:50 +0000 Subject: [PATCH] Better error message Former-commit-id: 551ccf8b9eaada8493c4f027f55f6e1a8afa66da --- plugins_install/diehard.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins_install/diehard.sh b/plugins_install/diehard.sh index f26323449..0da1d37b3 100755 --- a/plugins_install/diehard.sh +++ b/plugins_install/diehard.sh @@ -28,12 +28,12 @@ if [ -z "$seq" ]; then cp $CFAR_HOME/DieHard/src/libdiehard.so libheaprand.so else if [ ! -f $CFAR_HOME/DieHard/src/libdiehard-4k.so ]; then - echo "ERROR: DieHard library not built/found" | tee warning.txt + echo "ERROR: DieHard library 4k not built/found" | tee warning.txt exit 1 fi if [ ! -f $CFAR_HOME/DieHard/src/libdiehard-32k.so ]; then - echo "ERROR: DieHard library not built/found" | tee warning.txt + echo "ERROR: DieHard library 32k not built/found" | tee warning.txt exit 1 fi -- GitLab