From 6bcdbccb7f09cc7635038cc67d001bee802a15e3 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Fri, 20 Sep 2024 17:59:50 +0200 Subject: [PATCH] utils/docker-run: fix symmetry typo Signed-off-by: Peter Korsgaard Signed-off-by: Yann E. MORIN --- utils/docker-run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/docker-run b/utils/docker-run index 1adb02d74e..849df66d54 100755 --- a/utils/docker-run +++ b/utils/docker-run @@ -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}" )