diff options
| author | ruki <[email protected]> | 2025-05-10 21:24:38 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2025-05-10 21:24:38 +0800 |
| commit | d679f86a8f78e8b8c172bdd8d050f0bb72f69864 (patch) | |
| tree | b4bade327dcbe46bf88e0aea7b6b4fc52a0bd3a6 | |
| parent | 5e8108b5b9eb58e4e2e38c3015ea46fc1d4c2c72 (diff) | |
update xmake.sh
| -rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -243,9 +243,9 @@ _os_find() { local name="${2}" local depth="${3}" if test_nz "${depth}"; then - _ret=$(find "${dir}" -maxdepth "${depth}" -mindepth "${depth}" -type f -name "${name}") + _ret=$(find "${dir}" -maxdepth "${depth}" -mindepth "${depth}" -type f -name "${name}" | LC_ALL=C sort) else - _ret=$(find "${dir}" -type f -name "${name}") + _ret=$(find "${dir}" -type f -name "${name}" | LC_ALL=C sort) fi } |
