moved build script and renamed

This commit is contained in:
Doug Fritz 2011-04-19 10:47:43 -07:00
parent a85a5b91ca
commit 93ba954df5

View File

@ -3,7 +3,6 @@
from optparse import OptionParser from optparse import OptionParser
import httplib, urllib import httplib, urllib
import os, fnmatch, shutil, re import os, fnmatch, shutil, re
from collections import OrderedDict
usage = """usage: %prog [options] command usage = """usage: %prog [options] command
@ -93,7 +92,7 @@ def compile(code):
return data return data
def bytes_to_kb(b,digits=1): def bytes_to_kb(b,digits=1):
return round(0.0078125 * b, digits) return round(0.0009765625 * b, digits)
def clean(): def clean():
if os.path.exists(BUILD_ROOT): if os.path.exists(BUILD_ROOT):