fix git post-install hook

This commit is contained in:
thek4n 2023-12-11 10:20:37 +03:00
parent 14b71fa591
commit 8067395002

View File

@ -1,5 +1,8 @@
#!/usr/bin/env bash #!/usr/bin/env bash
git config --global user.name "$USER" git config --global user.name "$USER"
git config --global user.email "${USER}@${HOST}" git config --global user.email "${USER}@${HOST:-$HOSTNAME}"
git config --global user.signingkey "$USER" git config --global user.signingkey "$USER"
git config --global github.user "$USER"
git config --global github.email "${USER}@${HOST:-$HOSTNAME}"