diff options
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/auto-build/create-latest-build-listing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/auto-build/create-latest-build-listing.py b/scripts/auto-build/create-latest-build-listing.py index 571edb55..c9d0172d 100755 --- a/scripts/auto-build/create-latest-build-listing.py +++ b/scripts/auto-build/create-latest-build-listing.py @@ -48,9 +48,9 @@ if len(sourcetarballs) > 0: except Exception, e: pass try: - print 'os.symlink(' + sourcetarball + ', ' + linkname + ')' + #print 'os.symlink(' + sourcetarball + ', ' + linkname + ')' os.symlink(sourcetarball, linkname) - print 'os.symlink(' + debiantarball + ', ' + debianlinkname + ')' + #print 'os.symlink(' + debiantarball + ', ' + debianlinkname + ')' os.symlink(debiantarball, debianlinkname) foundsourcetarball = True except Exception, e: |