MCPcopy Create free account
hub / github.com/koding/kite / postbuild_linux

Function postbuild_linux

kitectl/release.py:124–131  ·  view source on GitHub ↗
(package_name, args, bucket, package_s3_key)

Source from the content-addressed store, hash-verified

122
123
124def 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
134def main():

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected