Skip to content

Commit

Permalink
fix: add missing mailto uri to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Coenraad Human committed Jun 5, 2024
1 parent 35657df commit 992b703
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ FROM alpine:3.19
RUN \
apk update && \
apk upgrade && \
apk add --no-cache bash sed shadow setpriv && \
apk add --no-cache bash sed shadow setpriv git && \
rm /var/cache/apk/* && \
# Preferred shell on pipelines:
chsh -s $(which bash) && \
Expand Down
4 changes: 2 additions & 2 deletions src/git.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ impl Author {
None => return format!("{}", name),
};

format!("<a href=\"{}\">{}</a>", email, name)
format!("<a href=\"mailto:{}\">{}</a>", email, name)
}

}
Expand All @@ -47,7 +47,7 @@ impl Committer {
None => return format!("{}", name),
};

format!("<a href=\"{}\">{}</a>", email, name)
format!("<a href=\"mailto:{}\">{}</a>", email, name)
}

}
Expand Down

0 comments on commit 992b703

Please sign in to comment.