mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 00:40:27 +08:00
11 lines
169 B
Bash
Executable File
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
|