9 lines
218 B
Bash
9 lines
218 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Pre-start check for frontend service
|
||
|
|
# Kills any development servers before starting production frontend
|
||
|
|
|
||
|
|
# Source the main kill script
|
||
|
|
/media/pts/Website/Church_HOP_MusicData/kill-dev-servers.sh
|
||
|
|
|
||
|
|
exit 0
|