Method: Tay::Packager#write_zip

Defined in:
lib/tay/packager.rb

#write_zip(out_path) ⇒ Object

Write a signed zip file to out_path for upload to the Web Store



24
25
26
27
28
29
30
31
# File 'lib/tay/packager.rb', line 24

def write_zip(out_path)
  CrxMake.zip(
    :ex_dir => @build_dir,
    :pkey   => full_key_path,
    :zip_output => out_path,
    :verbose => false
  )
end