Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## untagged

- Check whether GCC is installed in initenv.sh
([#608](https://github.com/chatmail/relay/pull/608))

- Expire push notification tokens after 90 days
([#583](https://github.com/chatmail/relay/pull/583))

Expand Down
5 changes: 5 additions & 0 deletions scripts/initenv.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ if command -v lsb_release 2>&1 >/dev/null; then
echo "You need to install python3-dev for installing the other dependencies."
exit 1
fi
if ! gcc --version 2>&1 >/dev/null
then
echo "You need to install gcc for building Python dependencies."
exit 1
fi
;;
esac
fi
Expand Down