(binpath, version)
| 61 | |
| 62 | |
| 63 | def build_osx(binpath, version): |
| 64 | print "Making tar file..." |
| 65 | tarname = "kite-%s-osx.tar.gz" % version |
| 66 | with tarfile.open(tarname, "w:gz") as tar: |
| 67 | tar.add(binpath, arcname="kite") |
| 68 | return tarname |
| 69 | |
| 70 | |
| 71 | def build_linux(binpath, version): |
nothing calls this directly
no outgoing calls
no test coverage detected