utils/docker-run: fix symmetry typo

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Peter Korsgaard 2024-09-20 17:59:50 +02:00 committed by Yann E. MORIN
parent b3e5bcec65
commit 6bcdbccb7f

View File

@ -78,7 +78,7 @@ if [ "${GIT_DIR}" ]; then
# 'repo' stores .git/objects separately.
if [ -L "${GIT_DIR}/objects" ]; then
# GITDIR is already an absolute path, but for symetry
# GITDIR is already an absolute path, but for symmetry
# with the above, keep the same cd+readlink construct.
OBJECTS_DIR="$(cd "${MAIN_DIR}"; readlink -e "${GIT_DIR}/objects")"
mountpoints+=( "${OBJECTS_DIR}" )