diff options
author | Kevin Smith <git@kismith.co.uk> | 2012-04-24 09:40:29 (GMT) |
---|---|---|
committer | Kevin Smith <git@kismith.co.uk> | 2012-04-24 09:40:43 (GMT) |
commit | b297ad414d4a3eb84f831783a1273cc9d7e2a101 (patch) | |
tree | 9126915570bd5b28e34acc1bfdf48cc30bb7ce88 /BuildTools | |
parent | ac8eb7c62838c7d85f451f2ee0f8456c14386137 (diff) | |
download | swift-b297ad414d4a3eb84f831783a1273cc9d7e2a101.zip swift-b297ad414d4a3eb84f831783a1273cc9d7e2a101.tar.bz2 |
Tweaks to improve Debian packaging
Diffstat (limited to 'BuildTools')
-rwxr-xr-x | BuildTools/DebianizeVersion.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/BuildTools/DebianizeVersion.py b/BuildTools/DebianizeVersion.py index dc5474f..9d776c0 100755 --- a/BuildTools/DebianizeVersion.py +++ b/BuildTools/DebianizeVersion.py @@ -7,6 +7,7 @@ assert(len(sys.argv) == 2) version = sys.argv[1] version = version.replace("beta", "~beta") version = version.replace("rc", "~rc") +version = version.replace("alpha", "~alpha") version = version.replace("-dev", "+dev") print version |