From 636a8ef48b81d152066d9041a26d098139bc3961 Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Fri, 17 May 2013 22:38:23 +0100 Subject: [PATCH] Remove hardcoded path to log directory --- toci_functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toci_functions.sh b/toci_functions.sh index 741b8c4f0..a974a2786 100644 --- a/toci_functions.sh +++ b/toci_functions.sh @@ -35,7 +35,7 @@ wait_for(){ apply_patches(){ cd $TOCI_WORKING_DIR/$1 for PATCH in $(find $TOCI_SOURCE_DIR/patches/ -name "$2") ; do - patch -p1 -N < $PATCH || echo Error : could not apply $PATCH >> /tmp/toci_logs/error-applying-patches.log + patch -p1 -N < $PATCH || echo Error : could not apply $PATCH >> $TOCI_LOG_DIR/error-applying-patches.log done }