Skip to content

Commit

Permalink
Merge pull request #280 from baarde/master
Browse files Browse the repository at this point in the history
Issue #223 ain't fixed yet
  • Loading branch information
tomaz committed Dec 6, 2012
2 parents 1a82341 + 4da264e commit 7b0a898
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Generating/GBGenerator.m
Expand Up @@ -60,8 +60,9 @@ - (void)setupGeneratorStepsWithStore:(id)store {
[self.outputGenerators addObject:[GBHTMLOutputGenerator generatorWithSettingsProvider:self.settings]];
if (!self.settings.createDocSet) return;
[self.outputGenerators addObject:[GBDocSetOutputGenerator generatorWithSettingsProvider:self.settings]];
if (!self.settings.installDocSet) return;
[self.outputGenerators addObject:[GBDocSetInstallGenerator generatorWithSettingsProvider:self.settings]];
if (self.settings.installDocSet) {
[self.outputGenerators addObject:[GBDocSetInstallGenerator generatorWithSettingsProvider:self.settings]];
}
if (!self.settings.publishDocSet) return;
[self.outputGenerators addObject:[GBDocSetPublishGenerator generatorWithSettingsProvider:self.settings]];
}
Expand Down

0 comments on commit 7b0a898

Please sign in to comment.