(package_name, args, bucket, package_s3_key)
| 122 | |
| 123 | |
| 124 | def postbuild_linux(package_name, args, bucket, package_s3_key): |
| 125 | if args.upload: |
| 126 | print "Uploading again as kite-latest.linux.deb ..." |
| 127 | latest = Key(bucket) |
| 128 | latest.key = "kite-latest-linux.deb" |
| 129 | latest.set_contents_from_filename(package_name) |
| 130 | latest.make_public() |
| 131 | print "Uploaded:", latest.generate_url(expires_in=0, query_auth=False) |
| 132 | |
| 133 | |
| 134 | def main(): |
nothing calls this directly
no outgoing calls
no test coverage detected