Rename "frameworks" to "external_binaries".

This commit is contained in:
Cheng Zhao 2014-05-18 23:35:07 +08:00
parent 6358fd1a4b
commit 9754050598
4 changed files with 15 additions and 14 deletions

View file

@ -11,12 +11,12 @@ SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
def main():
os.chdir(SOURCE_ROOT)
update_frameworks()
update_external_binaries()
update_gyp()
def update_frameworks():
uf = os.path.join('script', 'update-frameworks.py')
def update_external_binaries():
uf = os.path.join('script', 'update-external-binaries.py')
subprocess.check_call([sys.executable, uf])