From e644f32cfe0d6d2f93ecb9b9b6ff3b32c40321da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Tue, 23 Jun 2026 21:05:53 +0200 Subject: [PATCH] fix: git config script indention in file --- arty.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arty.yml b/arty.yml index d112990..7623ea1 100644 --- a/arty.yml +++ b/arty.yml @@ -54,7 +54,7 @@ scripts: git:config: | printf 'Name: ' && read name printf 'Email: ' && read email - printf '[user]\n\tname = %s\n\temail = %s\n' "$name" "$email" > ~/.gitconfig.local + printf '[user]\n name = %s\n email = %s\n' "$name" "$email" > ~/.gitconfig.local echo "Written ~/.gitconfig.local" ssh:keygen: ssh-keygen -t ed25519 -C "$(git config --global --include user.email)" rust:install: curl https://sh.rustup.rs -sSf | sh -s -- --no-modify-path -y