From f4481a84f4dbd800823121a676a18d37b330a2b7 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Tue, 24 Sep 2024 23:41:35 +0200 Subject: [PATCH] fix: set a correct global working dir when generating a .clangd file --- .templates/install_clangd.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.templates/install_clangd.sh b/.templates/install_clangd.sh index 7287ac7..6483581 100755 --- a/.templates/install_clangd.sh +++ b/.templates/install_clangd.sh @@ -1,7 +1,7 @@ #!/bin/sh CURRENT_DIR=$(pwd) -GLOBAL_WORKING_DIR=$(realpath ${CURRENT_DIR}/../..) +GLOBAL_WORKING_DIR=$(realpath ${CURRENT_DIR}/..) # ----------