mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 13:03:29 +00:00
In tools/setup/generate-test-credentials line 10:
password=$(./manage.py print_initial_password "$email" | fgrep "$email" | awk '{ print $2 }')
^-- SC2197: fgrep is non-standard and deprecated. Use grep -F instead.
Signed-off-by: Anders Kaseorg <andersk@mit.edu>