Files
talk/scripts/poste2e.sh
T
2017-01-25 11:11:33 -07:00

11 lines
169 B
Bash
Executable File

#!/bin/bash
# If there is a PID file from the e2e tests...
if [ -e /tmp/talk-e2e.pid ]
then
# Then kill the running talk server.
kill $(cat /tmp/talk-e2e.pid)
fi