mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
nope, echo -e isn't portable
Docker-DCO-1.1-Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au> (github: SvenDowideit)
This commit is contained in:
parent
69c69059fc
commit
4f29836f71
1 changed files with 4 additions and 1 deletions
|
@ -4,4 +4,7 @@
|
|||
#
|
||||
GH_USER=$(git config --get github.user)
|
||||
SOB=$(git var GIT_AUTHOR_IDENT | sed -n "s/^\(.*>\).*$/Docker-DCO-1.1-Signed-off-by: \1 \(github: $GH_USER\)/p")
|
||||
grep -qs "^$SOB" "$1" || echo -e "\n$SOB" >> "$1"
|
||||
grep -qs "^$SOB" "$1" || {
|
||||
echo
|
||||
echo "$SOB"
|
||||
} >> "$1"
|
||||
|
|
Loading…
Reference in a new issue