Remove hardcoded path to log directory

This commit is contained in:
Derek Higgins 2013-05-17 22:38:23 +01:00
parent 2c98a95899
commit 636a8ef48b
1 changed files with 1 additions and 1 deletions

View File

@ -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
}