From c672fa87d78e56c8419828f985855f6576f0d8ec Mon Sep 17 00:00:00 2001 From: Pierre Labastie Date: Fri, 12 Jan 2018 10:42:36 +0000 Subject: [PATCH] Always create the test-log directory to allow user to "uncomment" test instructions --- jhalfs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/jhalfs b/jhalfs index 69e6d61..4a81c3a 100755 --- a/jhalfs +++ b/jhalfs @@ -393,8 +393,9 @@ if [[ "$REBUILD_MAKEFILE" = "n" ]] ; then # Copy urls.xsl, if needed [[ "$GETPKG" = "y" ]] && cp $COMMON_DIR/urls.xsl $JHALFSDIR/ -# Create the test-log directory, if needed - [[ "$TEST" != "0" ]] && [[ ! -d $TESTLOGDIR ]] && install -d -m 1777 $TESTLOGDIR +# Always create the test-log directory to allow user to "uncomment" test +# instructions + install -d -m 1777 $TESTLOGDIR # Create the installed-files directory, if needed [[ "$INSTALL_LOG" = "y" ]] && [[ ! -d $FILELOGDIR ]] && install -d -m 1777 $FILELOGDIR