Skip to content

Commit

Permalink
Filter out [email protected] as well
Browse files Browse the repository at this point in the history
  • Loading branch information
martinthomson committed Aug 28, 2024
1 parent 329c20b commit a00b991
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get-email.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
tried=()
emailok() {
tried+=("$1")
if [ -n "$2" ]; then
if [ -n "$2" -a "$2" != "[email protected]" ]; then
echo "$2"
exit 0
fi
Expand Down

0 comments on commit a00b991

Please sign in to comment.