Skip to content

Commit ebd4233

Browse files
authored
Merge pull request #319 from lamby/971527-libsass-python-please-make-the-build-reproducible
Make the build reproducible
2 parents 88ddfc3 + 905d3dd commit ebd4233

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

sassutils/builder.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@
2222

2323
#: (:class:`re.RegexObject`) The regular expression pattern which matches to
2424
#: filenames of supported :const:`SUFFIXES`.
25-
SUFFIX_PATTERN = re.compile('[.](' + '|'.join(map(re.escape, SUFFIXES)) + ')$')
25+
SUFFIX_PATTERN = re.compile(
26+
'[.](' + '|'.join(map(re.escape, sorted(SUFFIXES))) + ')$',
27+
)
2628

2729

2830
def build_directory(

0 commit comments

Comments
 (0)