Skip to content

Commit

Permalink
fix indentation and rename function
Browse files Browse the repository at this point in the history
  • Loading branch information
zeke committed Sep 8, 2016
1 parent de43b41 commit 5bee017
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/create-dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def main():
copy_chrome_binary('chromedriver')
copy_chrome_binary('mksnapshot')
copy_license()
copy_api_json()
copy_api_json_schema()

if PLATFORM == 'linux':
strip_binaries()
Expand Down Expand Up @@ -129,8 +129,8 @@ def copy_license():
DIST_DIR)
shutil.copy2(os.path.join(SOURCE_ROOT, 'LICENSE'), DIST_DIR)

def copy_api_json():
shutil.copy2(os.path.join(OUT_DIR, 'electron-api.json'), DIST_DIR)
def copy_api_json_schema():
shutil.copy2(os.path.join(OUT_DIR, 'electron-api.json'), DIST_DIR)

def strip_binaries():
for binary in TARGET_BINARIES[PLATFORM]:
Expand Down

0 comments on commit 5bee017

Please sign in to comment.