diff options
author | Rob Austein <sra@hactrn.net> | 2017-04-14 18:01:27 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2017-04-14 18:01:27 -0400 |
commit | 8a3467f5d2fedf50f149abb80e5e9f39da668ba7 (patch) | |
tree | 445814ea714fb7634bf83112f8365eb5c763138a /scripts/build-debian-control-files.py | |
parent | 92b67aebd49eadbff9efa3d76ef4f25c5df186d4 (diff) |
Might work better if we were to write emit Python.
Diffstat (limited to 'scripts/build-debian-control-files.py')
-rwxr-xr-x | scripts/build-debian-control-files.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/build-debian-control-files.py b/scripts/build-debian-control-files.py index dbfcb38..17c9cd4 100755 --- a/scripts/build-debian-control-files.py +++ b/scripts/build-debian-control-files.py @@ -58,5 +58,4 @@ with open("debian/control", "w") as f: f.write(control_template.format(args = args, conflicts = conflicts)) with open("cryptech_version.py", "w") as f: - f.write(args.newversion) - f.write("\n") + f.write("VERSION = '{}'\n".format(args.newversion)) |