Fixed script for new readme

- updated README with new version
- fixed casing error for -e opt description
This commit is contained in:
Phil Nash
2013-06-07 21:15:25 +01:00
parent f3592f2102
commit 7d5f2715ce
4 changed files with 6 additions and 6 deletions

View File

@@ -86,8 +86,8 @@ class Version:
f.close()
f = open( readmePath, 'w' )
for line in lines:
if line.startswith( "## CATCH" ):
f.write( '## CATCH v{0}.{1} build {2} ({3} branch)\n'.format( self.majorVersion, self.minorVersion, self.buildNumber, self.branchName ) )
if line.startswith( "*v" ):
f.write( '*v{0}.{1} build {2} ({3} branch)*\n'.format( self.majorVersion, self.minorVersion, self.buildNumber, self.branchName ) )
else:
f.write( line + "\n" )