Skip to content

Commit

Permalink
pre-merge cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
robvdveer committed Jul 31, 2013
1 parent 7537032 commit 48beb22
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Generating/GBDocSetOutputGenerator.m
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ - (BOOL)indexDocSet:(NSError **)error {
GBLogInfo(@"Indexing DocSet...");
GBTask *task = [GBTask task];
task.reportIndividualLines = YES;
NSArray *args = [NSArray arrayWithObjects:@"docsetutil", @"index", @"-debug", @"-verbose",[self.outputUserPath stringByStandardizingPath], nil];
NSArray *args = [NSArray arrayWithObjects:@"docsetutil", @"index", [self.outputUserPath stringByStandardizingPath], nil];
BOOL result = [task runCommand:self.settings.xcrunPath arguments:args block:^(NSString *output, NSString *error) {
if (output) GBLogDebug(@"> %@", [output stringByTrimmingWhitespaceAndNewLine]);
if (error) GBLogError(@"!> %@", [error stringByTrimmingWhitespaceAndNewLine]);
Expand Down
2 changes: 1 addition & 1 deletion Templates/docset/Contents/Resources/nodes-template.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<DocSetNodes version="1.1">
<DocSetNodes version="1.0">
<TOC>
<Node type="folder">
<Name>{{projectName}}</Name>
Expand Down

0 comments on commit 48beb22

Please sign in to comment.