From 5e97a877d598614b250120ea96bf1a81d5d5c21e Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Fri, 18 Jul 2008 17:28:41 +0000 Subject: [PATCH] Make the WEBGUI_CONFIG environment variable warning messages more instructive. --- t/lib/WebGUI/Test.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/t/lib/WebGUI/Test.pm b/t/lib/WebGUI/Test.pm index a93afa8af..5b4d66f50 100644 --- a/t/lib/WebGUI/Test.pm +++ b/t/lib/WebGUI/Test.pm @@ -53,12 +53,12 @@ BEGIN { $CONFIG_FILE = $ENV{ WEBGUI_CONFIG }; unless ( defined $CONFIG_FILE ) { - warn qq/Enviroment variable WEBGUI_CONFIG must be set.\n/; + warn qq/Enviroment variable WEBGUI_CONFIG must be set to the full path to a WebGUI config file.\n/; exit(1); } unless ( $CONFIG_FILE ) { - warn qq/Enviroment variable WEBGUI_CONFIG must not be empty.\n/; + warn qq/Enviroment variable WEBGUI_CONFIG must not be empty. It must be set to the full path of a WebGUI config file.\n/; exit(1); }