Bug 888646 - Update missed use of SimpleManifestSink API. r=trivial

This is a simple follow-up to Bug 887121.
This commit is contained in:
Nick Alexander 2013-06-29 20:15:08 -07:00
parent 8cfacdc312
commit fc116353df

View File

@ -10,6 +10,7 @@ from mozpack.packager.formats import (
from mozpack.packager import (
preprocess_manifest,
preprocess,
Component,
SimpleManifestSink,
)
from mozpack.files import (
@ -315,7 +316,7 @@ def main():
if args.manifest:
preprocess_manifest(sink, args.manifest, defines)
else:
sink.add('', 'bin/*')
sink.add(Component(''), 'bin/*')
sink.close(args.manifest is not None)
if args.removals: