From 573bbdc2beee55e9912735d5c98931364371b074 Mon Sep 17 00:00:00 2001 From: SIlvio Ney Date: Mon, 1 Apr 2024 11:36:30 +0100 Subject: [PATCH] fix gitconfig invalid characters issue --- src/docker.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docker.sh b/src/docker.sh index 53c3655..a023066 100644 --- a/src/docker.sh +++ b/src/docker.sh @@ -53,7 +53,7 @@ run() { local gitconfig="" if [ -f ~/.gitconfig ]; then - gitconfig="-v ~/.gitconfig:/root/.gitconfig:ro" + gitconfig="-v $HOME/.gitconfig:/root/.gitconfig:ro" fi if [ -n "$GIT_EXEC_PATH" ]; then