[Linux] More follow-through on earlier manifest tuning, make always really mean always.

This commit is contained in:
Router Gray
2020-03-30 03:06:21 -05:00
parent 356d289972
commit c033d69d54

View File

@@ -1152,9 +1152,8 @@ class LinuxManifest(ViewerManifest):
def do(self, *actions):
super(LinuxManifest, self).do(*actions)
if not 'package' in self.actions:
self.package_finish() # Always finish the package.
else:
self.package_finish() # Always finish the package.
if 'package' in self.actions:
# package_finish() was called by super.do() so just create the TAR.
self.create_archive()
return self.file_list