diff options
author | June McEnroe <june@causal.agency> | 2020-05-02 21:30:31 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-05-02 21:30:31 -0400 |
commit | e0fdea644e884827f04b287ddc9438a78d7d137b (patch) | |
tree | ed809018ec0eac7f9abeaf69935b3fc002cc064f /git-fetch-email.sh | |
parent | Fix git-fetch-email argument parsing (diff) | |
download | imbox-e0fdea644e884827f04b287ddc9438a78d7d137b.tar.gz imbox-e0fdea644e884827f04b287ddc9438a78d7d137b.zip |
Pass explicit host to git-credential
Diffstat (limited to '')
-rw-r--r-- | git-fetch-email.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-fetch-email.sh b/git-fetch-email.sh index 83243c7..168dd7a 100644 --- a/git-fetch-email.sh +++ b/git-fetch-email.sh @@ -73,7 +73,7 @@ fi description() { cat <<-EOF protocol=imaps - host=${user#*@} + host=${host:-${user#*@}} username=${user%@*} ${pass:+password=${pass}} EOF |