File: make_wb_version.py

package info (click to toggle)
svn-workbench 1.6.2-2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 1,936 kB
  • sloc: python: 14,970; sh: 87; makefile: 48; ansic: 9
file content (24 lines) | stat: -rw-r--r-- 604 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
'''
 ====================================================================
 Copyright (c) 2007 Barry A Scott.  All rights reserved.

 This software is licensed as described in the file LICENSE.txt,
 which you should have received as part of this distribution.

 ====================================================================

    make_wb_version.py

'''
import sys
sys.path.append( '../Builder' )
import brand_version

argv = [
        sys.argv[0],
        '../Builder/version.info',
        'wb_version.py.template',
        ]

if __name__ == '__main__':
    sys.exit( brand_version.main( argv ) )