We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13250eb commit 07df095Copy full SHA for 07df095
1 file changed
sign.py
@@ -24,7 +24,7 @@
24
25
26
def safe_glob(input: Path, pattern: str):
27
- for f in input.glob(pattern):
+ for f in sorted(input.glob(pattern)):
28
if not f.name.startswith("._") and f.name not in [".DS_Store", ".AppleDouble", "__MACOSX"]:
29
yield f
30
0 commit comments