diff options
Diffstat (limited to 'tools/export.py')
-rwxr-xr-x | tools/export.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/export.py b/tools/export.py index 5e48a3613..d32ad3a60 100755 --- a/tools/export.py +++ b/tools/export.py @@ -71,11 +71,11 @@ for line in fileinput.input('solaris/Makefile', inplace=1): sys.stdout.write(line) for line in fileinput.input('solaris/pkginfo.bcfg2', inplace=1): if line.startswith('VERSION='): - line = line.replace(line, 'VERSION=%s\n' % version) + line = line.replace(line, 'VERSION="%s"\n' % version) sys.stdout.write(line) for line in fileinput.input('solaris/pkginfo.bcfg2-server', inplace=1): if line.startswith('VERSION='): - line = line.replace(line, 'VERSION=%s\n' % version) + line = line.replace(line, 'VERSION="%s"\n' % version) sys.stdout.write(line) # update the version in reports for line in fileinput.input('src/lib/Server/Reports/reports/templates/base.html', |