Mitch Garnaat

Add the missing call to build the zip file.

...@@ -222,6 +222,7 @@ class Function(object): ...@@ -222,6 +222,7 @@ class Function(object):
222 def update(self): 222 def update(self):
223 LOG.info('updating %s', self.name) 223 LOG.info('updating %s', self.name)
224 self._copy_config_file() 224 self._copy_config_file()
225 + self.zip_lambda_function(self.zipfile_name, self.path)
225 if self._do_update(): 226 if self._do_update():
226 self._context.save_cache() 227 self._context.save_cache()
227 with open(self.zipfile_name, 'rb') as fp: 228 with open(self.zipfile_name, 'rb') as fp:
......