Skip to content

Commit

Permalink
Removes publish-docset dependency on install-docset (fixes tomaz#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
baarde committed Dec 6, 2012
1 parent 1a82341 commit 4da264e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Generating/GBGenerator.m
Original file line number Diff line number Diff line change
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 4da264e

Please sign in to comment.