commit 6247dc36229f5ce8b8b5ab68318b725177038d15 parent f52676e97c775bc3bacc8617d92899b6fa267cae Author: Matthias Jaros <jaros@mailbox.org> Date: Sun, 9 Nov 2025 19:38:34 +0100 Fix could not create user directory Diffstat:
| M | src/init | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/init b/src/init @@ -46,7 +46,7 @@ function setupUser end # Copy/Overwrite ssh key - mkdir "$HOME/.ssh" + mkdir -p "$HOME/.ssh" echo "$key" > "$HOME/.ssh/authorized_keys" chown -R $user "$HOME" chmod -R 700 "$HOME"