Skip to content

Commit db3fd2c

Browse files
committed
-
1 parent 4111a1e commit db3fd2c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pipeline/packager.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,11 @@ def pack_stylesheets(self, package, **kwargs):
9999
output_filename=package.output_filename,
100100
variant=package.variant, **kwargs)
101101

102-
def compile(self, paths, compiler_options, force=False):
102+
def compile(self, paths, compiler_options={}, force=False):
103103
return self.compiler.compile(
104104
paths,
105-
force=force,
106105
compiler_options=compiler_options,
106+
force=force,
107107
)
108108

109109
def pack(self, package, compress, signal, **kwargs):
@@ -112,8 +112,8 @@ def pack(self, package, compress, signal, **kwargs):
112112
print("Saving: %s" % output_filename)
113113
paths = self.compile(
114114
package.paths,
115-
force=True,
116115
compiler_options=package.compiler_options,
116+
force=True,
117117
)
118118
content = compress(paths, **kwargs)
119119
self.save_file(output_filename, content)

0 commit comments

Comments
 (0)