Skip to content

Commit 07df095

Browse files
committed
fix: sort glob results for consistent tweak injections
1 parent 13250eb commit 07df095

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sign.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525

2626
def safe_glob(input: Path, pattern: str):
27-
for f in input.glob(pattern):
27+
for f in sorted(input.glob(pattern)):
2828
if not f.name.startswith("._") and f.name not in [".DS_Store", ".AppleDouble", "__MACOSX"]:
2929
yield f
3030

0 commit comments

Comments
 (0)