mirror of
https://github.com/zulip/zulip.git
synced 2025-10-30 11:33:51 +00:00
In tools/test-all-docker line 7: source /home/zulip/.bash_profile ^-- SC1091: Not following: /home/zulip/.bash_profile: openBinaryFile: does not exist (No such file or directory) Signed-off-by: Anders Kaseorg <andersk@mit.edu>
10 lines
236 B
Bash
Executable File
10 lines
236 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sudo service rabbitmq-server restart
|
|
sudo service postgresql restart
|
|
sudo service redis-server restart
|
|
sudo service memcached restart
|
|
# shellcheck source=/dev/null
|
|
source /home/zulip/.bash_profile
|
|
/srv/zulip/tools/test-all
|