diff options
Diffstat (limited to 'bin/just-import-cargo.py')
-rwxr-xr-x | bin/just-import-cargo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/just-import-cargo.py b/bin/just-import-cargo.py index fef36ea..9eb0d0a 100755 --- a/bin/just-import-cargo.py +++ b/bin/just-import-cargo.py @@ -294,7 +294,7 @@ def compute_srcs(root_dir: str, name: str, version: str) -> List[Any]: with open(srcs_file, "w") as f: print(json.dumps(srcs), file=f) - return srcs + return sorted(srcs) def to_underscore(x: str): |