mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:28:02 +00:00
Don't assume integer revision in linux distribution scripts
TBR=sgjesse@google.com BUG= Review URL: https://codereview.chromium.org//1147643002
This commit is contained in:
parent
b588600fb2
commit
8880dcadd8
1 changed files with 1 additions and 1 deletions
|
@ -104,7 +104,7 @@ def GenerateChangeLog(filename, version):
|
|||
|
||||
def GenerateSvnRevision(filename, svn_revision):
|
||||
with open(filename, 'w') as f:
|
||||
f.write(svn_revision)
|
||||
f.write(str(svn_revision))
|
||||
|
||||
|
||||
def CreateTarball(tarfilename):
|
||||
|
|
Loading…
Reference in a new issue