From 51a61925d3ae76eb84738952fa371557a1dd0169 Mon Sep 17 00:00:00 2001 From: Tomasz Sowa Date: Tue, 24 Sep 2024 23:40:47 +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}/..) # ----------