Merge pull request #7303 from electron/fix-out-dir
electron-api.json is under out/ instead of out/R/
This commit is contained in:
commit
d3a175cea8
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ def copy_license():
|
|||
shutil.copy2(os.path.join(SOURCE_ROOT, 'LICENSE'), DIST_DIR)
|
||||
|
||||
def copy_api_json_schema():
|
||||
shutil.copy2(os.path.join(OUT_DIR, 'electron-api.json'), DIST_DIR)
|
||||
shutil.copy2(os.path.join(SOURCE_ROOT, 'out', 'electron-api.json'), DIST_DIR)
|
||||
|
||||
def strip_binaries():
|
||||
for binary in TARGET_BINARIES[PLATFORM]:
|
||||
|
|
Loading…
Reference in a new issue