From 1deaeb04e59c4afd76d69b53d4e9ffc2a9a7b930 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Thu, 4 Aug 2011 13:19:37 +0200 Subject: Adjusting check for target directory in live-build-cron scripts to fail if non-directories are used, thanks to Ben Armstrong . --- cron/live-build-cron-manual | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'cron/live-build-cron-manual') diff --git a/cron/live-build-cron-manual b/cron/live-build-cron-manual index de38a3287..7a7c4a0db 100755 --- a/cron/live-build-cron-manual +++ b/cron/live-build-cron-manual @@ -31,7 +31,9 @@ Init () exit 0 fi - if [ -z "${LIVE_BUILD_CRON_MANUAL_DIRECTORY}" ] + mkdir -p "${LIVE_BUILD_CRON_MANUAL_DIRECTORY}" + + if [ ! -d "${LIVE_BUILD_CRON_MANUAL_DIRECTORY}" ] then echo "E: live-build-cron-manual directory not set." exit 1 -- cgit v1.2.3