Skip to content
Snippets Groups Projects
Commit 85780ba7 authored by Teake Nutma's avatar Teake Nutma
Browse files

Fix typo

parent 06e86745
Branches
No related merge requests found
......@@ -17,7 +17,7 @@ function merge_request_log_single() {
# Fetch variables
committers=$(git log --format='%an <%ae>' ${hash}^..${hash} --skip=1)
contributors=$(echo "${committers}" | uniq | sort | tr '\n' ', ' | sed s'/.$//' | sed s'/.$//')
contributors=$(echo "${committers}" | uniq | sort | tr '\n' ', ')
num_commits=$(echo "${committers}" | wc -l | tr -d '[:space:]')
reviewer=$(git show --format='%cn <%ce>' ${hash})
raw_body=$(git show ${hash} --format='%B' | sed 's/\r$//')
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment