mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2024-12-22 15:43:14 +01:00
8 lines
109 B
Bash
Executable file
8 lines
109 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -f ./tmp/pids/server.pid ]; then
|
|
rm ./tmp/pids/server.pid
|
|
fi
|
|
|
|
exec bundle exec "$@"
|