From 52fff2056b5d6cd2908c8e646548c0fa02a5adda Mon Sep 17 00:00:00 2001 From: Malte Tancred Date: Tue, 12 Jun 2012 17:44:17 +0200 Subject: [PATCH] Fixed code standard issues. --- Tools/XcodeCapp/TNXCodeCapp.m | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Tools/XcodeCapp/TNXCodeCapp.m b/Tools/XcodeCapp/TNXCodeCapp.m index 2ecee5fdc..5558f9e22 100644 --- a/Tools/XcodeCapp/TNXCodeCapp.m +++ b/Tools/XcodeCapp/TNXCodeCapp.m @@ -469,10 +469,13 @@ NSString * const XCCListeningStartNotification = @"XCCListeningStartNotification } /*! - Create the xCodeSupport/Sources folder if necessary. + Create the .xCodeSupport/Sources folder if necessary. */ -- (void)createXcodeSupportProjectSourcesDirIfNecessary { - if ([fm fileExistsAtPath:[XCodeSupportProjectSources path]]) return; +- (void)createXcodeSupportProjectSourcesDirIfNecessary +{ + if ([fm fileExistsAtPath:[XCodeSupportProjectSources path]]) + return; + DLog(@"Creating source folder %@", [XCodeSupportProjectSources path]); [fm createDirectoryAtPath:[XCodeSupportProjectSources path] withIntermediateDirectories:YES attributes:nil error:nil]; }