chore: fix ffmpeg upload path and always generate node headers

This commit is contained in:
Samuel Attard 2018-09-29 12:27:29 +10:00
parent 851cd22f10
commit 9ec7137443
No known key found for this signature in database
GPG key ID: E89DDE5742D58C4E
2 changed files with 3 additions and 2 deletions

View file

@ -84,7 +84,8 @@ def main():
# Upload free version of ffmpeg.
ffmpeg = get_zip_name('ffmpeg', ELECTRON_VERSION)
ffmpeg_zip = os.path.join(OUT_DIR, ffmpeg)
shutil.copy2(os.path.join(OUT_DIR, 'ffmpeg.zip'), ffmpeg_zip)
ffmpeg_build_path = os.path.join(GN_SRC_DIR, 'out', 'ffmpeg', 'ffmpeg.zip')
shutil.copy2(ffmpeg_build_path, ffmpeg_zip)
upload_electron(release, ffmpeg_zip, args)
chromedriver = get_zip_name('chromedriver', ELECTRON_VERSION)