identity: create the identities folder if it doesn't already exist

This commit is contained in:
kale 2023-12-22 16:34:35 +01:00
parent caefe0c84b
commit f050ea3ea7
Signed by: kalmenn
GPG key ID: F500055C44BC3834

View file

@ -1,6 +1,7 @@
#!/bin/sh
identities="$HOME/.local/share/git/identities";
mkdir -p "$identities";
function yes_or_no { # courtesy of: https://stackoverflow.com/a/29436423
while true; do