Commit f184595d20315d219f5ca33d68d5bf2431f2b276

Authored by Jacob Vosmaer
1 parent eba6eb30

Explicitly use .forward for sending notifications

Showing 3 changed files with 5 additions and 2 deletions   Show diff stats
CHANGELOG
... ... @@ -3,6 +3,9 @@
3 3 The latest version of this file can be found at the master branch of the
4 4 omnibus-gitlab repository.
5 5  
  6 +7.1.0
  7 +- Build: explicitly use .forward for sending notifications
  8 +
6 9 7.0.0
7 10 - Specify numeric user / group identifiers
8 11 - Support AWS S3 attachment storage
... ...
doc/release.md
... ... @@ -74,7 +74,7 @@ sudo su - omnibus-build
74 74 - Test email delivery:
75 75  
76 76 ```shell
77   -date | mail -s "testing from $(uname -n)" $(whoami)
  77 +date | mail -s "testing from $(uname -n)" $(cat ~/.forward)
78 78 ```
79 79  
80 80 - Configure aws credentials
... ...
release.sh
... ... @@ -15,4 +15,4 @@ fi
15 15  
16 16 # We assume that email to the current system user will somehow reach the right
17 17 # human eyes
18   -tail ${build}.log | sed 's/.*\r//' | mail -s "${subject}" $(whoami)
  18 +tail ${build}.log | sed 's/.*\r//' | mail -s "${subject}" $(cat ~/.forward)
... ...