From 12b4742f294d3c881977be08c1b058af84f834b3 Mon Sep 17 00:00:00 2001 From: Jean Jacques Avril Date: Tue, 31 Dec 2024 11:41:07 +0000 Subject: [PATCH] fix: perm 600 ssh keys in dev moun --- .devcontainer/setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.devcontainer/setup.sh b/.devcontainer/setup.sh index 225c3f0..72e7abf 100644 --- a/.devcontainer/setup.sh +++ b/.devcontainer/setup.sh @@ -31,4 +31,5 @@ else echo "backend-go directory not found, skipping..." fi -#chmod 600 /home/vscode/.ssh/* # && git config --global user.name 'Jean Avril' && git config --global user.email 'jean@jeanavril.com' \ No newline at end of file +sudo chmod 600 /home/vscode/.ssh/* && sudo chown $USER:$USER /home/vscode/.ssh/* +#git config --global user.name 'Jean Avril' && git config --global user.email 'jean@jeanavril.com' \ No newline at end of file