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