Skip to content

Commit

Permalink
Added build number to version output too.
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaz committed Jan 17, 2011
1 parent 3bc9769 commit 7b71556
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Application/GBAppledocApplication.m
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,8 @@ - (void)printSettingsAndArguments:(NSArray *)arguments {
- (void)printVersion {
NSString *appledocName = [self.settings.stringTemplates.appledocData objectForKey:@"tool"];
NSString *appledocVersion = [self.settings.stringTemplates.appledocData objectForKey:@"version"];
ddprintf(@"%@ version: %@\n", appledocName, appledocVersion);
NSString *appledocBuild = [self.settings.stringTemplates.appledocData objectForKey:@"build"];
ddprintf(@"%@ version: %@ (build %@)\n", appledocName, appledocVersion, appledocBuild);
ddprintf(@"\n");
}

Expand Down

0 comments on commit 7b71556

Please sign in to comment.