diff options
Diffstat (limited to '')
-rwxr-xr-x | libexec/container/list | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libexec/container/list b/libexec/container/list index a56c1f8..e211b7c 100755 --- a/libexec/container/list +++ b/libexec/container/list @@ -327,7 +327,7 @@ esac if ls "${MACHINES}"/* > /dev/null 2>&1 then - CONTAINERS="$(cd "${MACHINES}" 2>/dev/null && find -maxdepth 1 \( -type d -or -type l \) -and -not -name 'lost+found' -printf '%P\n' | sort)" + CONTAINERS="$(cd "${MACHINES}" 2>/dev/null && find -maxdepth 1 \( -type d -or -type l \) -and -not -name 'lost+found' -printf '%P\n' | sort -V)" fi for CONTAINER in ${CONTAINERS} |